-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@metamask/account-watcher",
"version": "4.1.1",
"description": "Keep an eye on Ethereum accounts right in MetaMask",
"keywords": [
"metamask",
"snap",
"keyring",
"watch-only",
"account-watcher",
"account"
],
"author": "",
"homepage": "https://github.com/MetaMask/snap-watch-only#readme",
"bugs": {
"url": "https://github.com/MetaMask/snap-watch-only/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/metamask/snap-watch-only.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"main": "dist/bundle.js",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"build": "mm-snap build",
"build:clean": "yarn clean && yarn build",
"build-preinstalled-snap": "node scripts/build-preinstalled-snap.js",
"clean": "rimraf \"dist\"",
"lint": "yarn lint:eslint && yarn lint:misc && yarn lint:deps && yarn lint:types",
"lint:deps": "depcheck",
"lint:eslint": "eslint . --cache --ext js,jsx,ts,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '!snap.manifest.json' --check",
"lint:types": "tsc --noEmit",
"publish:preview": "yarn npm publish --tag preview",
"start": "mm-snap watch",
"test": "yarn jest"
},
"devDependencies": {
"@ethereumjs/tx": "^5.1.0",
"@ethereumjs/util": "^9.0.1",
"@lavamoat/allow-scripts": "^3.0.3",
"@metamask/auto-changelog": "^3.3.0",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@metamask/keyring-api": "^8.1.3",
"@metamask/snaps-cli": "^6.2.1",
"@metamask/snaps-jest": "^6.0.1",
"@metamask/snaps-sdk": "^6.2.1",
"@metamask/snaps-types": "^3.1.0",
"@metamask/utils": "^8.3.0",
"@types/jest": "^29.5.12",
"@types/react": "18.2.5",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"depcheck": "^1.4.7",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.0.3",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^5.7.2",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.16 || >=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lavamoat": {
"allowScripts": {
"@swc/core": false,
"ts-node>@swc/core": false,
"@lavamoat/preinstall-always-fail": false,
"@metamask/snaps-types>@metamask/snaps-utils>@metamask/permission-controller>@metamask/controller-utils>ethereumjs-util>ethereum-cryptography>keccak": false,
"@metamask/snaps-types>@metamask/snaps-utils>@metamask/permission-controller>@metamask/controller-utils>ethereumjs-util>ethereum-cryptography>secp256k1": false
}
}
}