-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "@rabby-wallet/service-keyring",
"version": "0.1.0",
"description": "A Ethereum key management library designed for handling Watch Addresses",
"keywords": [
"RabbyHub",
"Ethereum"
],
"homepage": "https://github.com/RabbyHub/rabby-mono/tree/main/packages/service-keyring#readme",
"bugs": {
"url": "https://github.com/RabbyHub/rabby-mono/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/RabbyHub/rabby-mono.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build:docs": "typedoc",
"changelog:validate": "../../scripts/validate-changelog.sh @rabby-wallet/service-keyring",
"cov:report": "open ./coverage/index.html",
"publish:preview": "yarn npm publish --tag preview",
"tool:decrypt": "yarn ../../ build:deps && node ./scripts/decyrptKeyringState.js",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
},
"dependencies": {
"@metamask/obs-store": "^9.0.0",
"@rabby-wallet/base-utils": "workspace:^",
"@rabby-wallet/eth-keyring-watch": "^0.1.0",
"@rabby-wallet/keyring-utils": "workspace:^",
"@rabby-wallet/service-address": "workspace:^",
"@scure/bip39": "^1.3.0",
"@types/readable-stream": "^4.0.10",
"ethereumjs-util": "^7.1.5",
"loglevel": "^1.8.1"
},
"devDependencies": {
"@metamask/auto-changelog": "^3.4.3",
"@types/jest": "^27.4.1",
"@types/sinon": "^9.0.10",
"deepmerge": "^4.2.2",
"ethereumjs-wallet": "^1.0.2",
"jest": "^27.5.1",
"sinon": "^9.2.4",
"ts-jest": "^27.1.4",
"typedoc": "^0.24.8",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "~4.8.4"
},
"peerDependencies": {
"@rabby-wallet/keyring-utils": "*"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}