forked from aspectron/kaspa-wallet-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 926 Bytes
/
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
{
"name": "@karlsen/wallet",
"version": "1.4.27",
"description": "Node module for karlsen",
"main": "dist/index.js",
"authors": [
{
"name": "ASPECTRON Inc."
},
{
"name": "Karlsen Developers"
}
],
"license": "ISC",
"scripts": {
"watch": "tsc --watch",
"prepublishOnly": "rm -rf ./dist && rm -f package-lock.json && npm install --also=dev && tsc"
},
"dependencies": {
"@aspectron/flow-logger": ">=1.0.3",
"@karlsen/core-lib": ">=1.6.5",
"@types/node": "^14.14.9",
"bitcore-mnemonic": "^8.24.2",
"browser-passworder": "^2.0.3",
"crypto-js": "^4.0.0",
"decimal.js": "^10.2.1",
"secp256k1-wasm": "^1.0.3"
},
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"ts-node": "^9.0.0",
"typescript": "*"
},
"files": [
"dist",
"types",
"utils",
"wallet",
"index.ts",
"README.md",
"tsconfig.json"
]
}