-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.14 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.14 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@metamask/eth-snap-keyring",
"version": "23.0.1",
"description": "Snaps keyring bridge",
"keywords": [
"keyring",
"metamask",
"snaps"
],
"homepage": "https://github.com/MetaMask/accounts/tree/main/packages/keyring-snap-bridge#readme",
"bugs": {
"url": "https://github.com/MetaMask/accounts/issues"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/accounts.git"
},
"files": [
"dist/",
"v2.js"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./v2": {
"import": {
"types": "./dist/v2/index.d.mts",
"default": "./dist/v2/index.mjs"
},
"require": {
"types": "./dist/v2/index.d.cts",
"default": "./dist/v2/index.cjs"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
"build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
"build:clean": "yarn build --clean",
"build:docs": "typedoc",
"changelog:update": "../../scripts/update-changelog.sh @metamask/eth-snap-keyring",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/eth-snap-keyring",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "yarn test:source && yarn test:types",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:source": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:types": "../../scripts/tsd-test.sh ./src",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"@ethereumjs/tx": "^5.4.0",
"@metamask/eth-sig-util": "^8.2.0",
"@metamask/keyring-internal-api": "^11.0.1",
"@metamask/keyring-internal-snap-client": "^10.0.5",
"@metamask/keyring-sdk": "^2.2.0",
"@metamask/keyring-snap-sdk": "^9.2.0",
"@metamask/keyring-utils": "^3.3.1",
"@metamask/messenger": "^2.0.0",
"@metamask/snaps-controllers": "^19.0.1",
"@metamask/snaps-sdk": "^11.0.0",
"@metamask/snaps-utils": "^12.2.1",
"@metamask/superstruct": "^3.3.0",
"@metamask/utils": "^11.11.0",
"@types/uuid": "^9.0.8",
"async-mutex": "^0.5.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.2.1",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/auto-changelog": "^6.1.0",
"@metamask/keyring-api": "^23.0.1",
"@ts-bridge/cli": "^0.6.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"jest": "^29.5.0",
"jest-it-up": "^3.1.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"tsd": "^0.31.0",
"typedoc": "^0.25.13",
"typescript": "~5.3.3"
},
"peerDependencies": {
"@metamask/keyring-api": "^23.0.0"
},
"tsd": {
"compilerOptions": {
"composite": "false"
},
"directory": "src"
},
"engines": {
"node": "^18.18 || >=20"
},
"lavamoat": {
"allowScripts": {
"@metamask/snaps-utils>@metamask/permission-controller>@metamask/controller-utils>ethereumjs-util>ethereum-cryptography>keccak": false,
"@metamask/snaps-utils>@metamask/permission-controller>@metamask/controller-utils>ethereumjs-util>ethereum-cryptography>secp256k1": false,
"@metamask/snaps-controllers>@metamask/phishing-controller>@metamask/controller-utils>ethereumjs-util>ethereum-cryptography>keccak": false,
"@metamask/snaps-controllers>@metamask/phishing-controller>@metamask/controller-utils>ethereumjs-util>ethereum-cryptography>secp256k1": false
}
}
}