-
Notifications
You must be signed in to change notification settings - Fork 645
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 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
{
"name": "@metamask/bip44-example-snap",
"version": "2.2.0",
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`",
"keywords": [
"MetaMask",
"Snaps",
"Ethereum"
],
"homepage": "https://github.com/MetaMask/snaps/tree/main/packages/examples/packages/bip44#readme",
"bugs": {
"url": "https://github.com/MetaMask/snaps/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"sideEffects": false,
"main": "./dist/bundle.js",
"files": [
"dist",
"snap.manifest.json"
],
"scripts": {
"build": "mm-snap build",
"build:clean": "yarn clean && yarn build",
"changelog:update": "../../../../scripts/update-changelog.sh @metamask/bip44-example-snap",
"changelog:validate": "../../../../scripts/validate-changelog.sh @metamask/bip44-example-snap",
"clean": "rimraf \"dist\"",
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn changelog:validate && yarn lint:dependencies",
"lint:ci": "yarn lint",
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!snap.manifest.json\" --ignore-path ../../../../.gitignore",
"publish:preview": "yarn npm publish --tag preview",
"since-latest-release": "../../../../scripts/since-latest-release.sh",
"start": "mm-snap watch",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
},
"dependencies": {
"@metamask/key-tree": "^10.1.1",
"@metamask/snaps-sdk": "workspace:^",
"@metamask/utils": "^11.5.0",
"@noble/bls12-381": "^1.2.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@lavamoat/allow-scripts": "^3.3.5",
"@metamask/auto-changelog": "^5.0.2",
"@metamask/snaps-cli": "workspace:^",
"@metamask/snaps-jest": "workspace:^",
"@swc/core": "1.11.31",
"@swc/jest": "^0.2.38",
"@types/node": "18.14.2",
"deepmerge": "^4.2.2",
"depcheck": "^1.4.7",
"eslint": "^9.11.0",
"jest": "^29.0.2",
"jest-silent-reporter": "^0.6.0",
"prettier": "^3.3.3",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
},
"engines": {
"node": "^20 || >=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}