forked from hippocrat-dao/hippocrat-wallet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "hippocrat-wallet-sdk",
"type": "module",
"version": "1.0.0",
"description": "Bitcoin, Hippocrat, DID and Data Wallet SDK for Node, Browser and Mobile",
"repository": {
"type": "git",
"url": "https://github.com/hippocrat-dao/hippocrat-wallet-sdk.git"
},
"author": "Chris Hyunhum Cho <[email protected]>",
"contributors": [
"Hyunsub Choi <[email protected]>"
],
"keywords": [
"hippocrat",
"bitcoin",
"ECIES",
"DID",
"wallet",
"javascript",
"typescript"
],
"files": [
"lib"
],
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.0.5",
"@noble/curves": "^1.2.0",
"aes-js": "^4.0.0-beta.5",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.0.2",
"bitcoinselect": "^1.0.0",
"cross-fetch": "^3.1.5",
"ethers": "^6.7.0",
"scrypt-js": "^3.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"c8": "^7.12.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.1.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"scripts": {
"compile": "tsc -p tsconfig.esm.json",
"compile:cjs": "tsc -p tsconfig.cjs.json",
"test": "cd lib/esm && npm run test",
"test:cjs": "cd lib/cjs && npm run test",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.eslintignore",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.eslintignore",
"format": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.prettierignore",
"format:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" --ignore-path ./.prettierignore"
},
"exports": {
".": {
"require": {
"types": "./lib/cjs/index.d.cts",
"default": "./lib/cjs/index.cjs"
},
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
}
}
},
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"sideEffects": false,
"license": "MIT"
}