-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.52 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
{
"name": "@zenchain-protocol/zazen",
"version": "0.0.6",
"description": "Zenchain snap for securely storing validator cloud access keys within Metamask.",
"repository": {
"type": "git",
"url": "git+https://github.com/zenchain-protocol/zazen.git"
},
"license": "MIT",
"sideEffects": false,
"main": "./dist/bundle.js",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"build": "mm-snap build && node scripts/merge-manifest.js",
"build:clean": "yarn clean && yarn build",
"clean": "rimraf \"dist\"",
"lint": "yarn lint:ci",
"lint:ci": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:changelog:fix",
"lint:eslint": "eslint . --cache",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn '**/*.json' '**/*.md' '**/*.html' --ignore-path .gitignore '!**/CHANGELOG.md' '!**/snap.manifest.json'",
"lint:misc:check": "yarn lint:misc --check",
"lint:misc:write": "yarn lint:misc --write",
"lint:changelog:fix": "yarn auto-changelog update --rc",
"lint:dependencies": "depcheck",
"start": "mm-snap watch",
"test": "yarn test:e2e",
"test:e2e": "jest"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@jest/globals": "^29.7.0",
"@lavamoat/allow-scripts": "^3.3.0",
"@metamask/auto-changelog": "^4.0.0",
"@metamask/eslint-config": "^14.0.0",
"@metamask/eslint-config-jest": "^14.0.0",
"@metamask/eslint-config-nodejs": "^14.0.0",
"@metamask/eslint-config-typescript": "^14.0.0",
"@metamask/snaps-cli": "^6.5.3",
"@metamask/snaps-jest": "^8.8.0",
"@swc/core": "1.9.3",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"depcheck": "^1.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"prettier-plugin-packagejson": "^2.5.6",
"ts-node": "^10.9.2",
"typescript": "~5.7.2"
},
"engines": {
"node": "^18.16 || >=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@metamask/snaps-sdk": "^6.12.0"
}
}