-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.55 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
{
"name": "@metamask/gator-permissions-snap",
"version": "0.2.1",
"description": "Grants 7715 permissions from a DeleGator smart account",
"homepage": "https://github.com/MetaMask/snap-7715-permissions/tree/main/packages/permissions-kernel-snap#readme",
"bugs": {
"url": "https://github.com/MetaMask/snap-7715-permissions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snap-7715-permissions.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"exports": {
"./package.json": "./package.json",
"./snap.manifest.json": "./snap.manifest.json",
"./images/icon.svg": "./images/icon.svg",
"./dist/bundle.js": "./dist/bundle.js",
"./dist/preinstalled-snap.json": "./dist/preinstalled-snap.json"
},
"main": "./dist/bundle.js",
"files": [
"dist/",
"images/",
"snap.manifest.json"
],
"scripts": {
"allow-scripts": "yarn workspace root allow-scripts",
"build": "mm-snap build && yarn build:preinstalled-snap",
"build:clean": "yarn clean && yarn build",
"build:pack": "yarn build:clean && yarn pack --filename ../../deps/snap-b-0.1.0.tgz",
"build:preinstalled-snap": "node scripts/build-preinstalled-snap.js",
"changelog:update": "../../scripts/update-changelog.sh @metamask/gator-permissions-snap",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/gator-permissions-snap",
"clean": "rimraf dist",
"lint": "yarn lint:eslint",
"lint:complete": "yarn lint:eslint && yarn lint:constraints && yarn lint:misc --check && yarn lint:dependencies --check && yarn lint:changelog",
"lint:changelog": "auto-changelog validate --prettier",
"lint:constraints": "yarn constraints",
"lint:dependencies": "depcheck && yarn dedupe",
"lint:eslint": "eslint . --cache --ext js,ts,tsx",
"lint:fix": "yarn lint:eslint --fix && yarn lint:constraints --fix && yarn lint:misc --write && yarn lint:dependencies && yarn lint:changelog",
"lint:misc": "prettier '**/*.json' '**/*.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"prepublishOnly": "mm-snap manifest",
"serve": "mm-snap serve",
"start": "mm-snap watch",
"test": "jest"
},
"dependencies": {
"@metamask/abi-utils": "3.0.0",
"@metamask/delegation-core": "0.1.0",
"@metamask/delegation-toolkit": "0.10.2",
"@metamask/profile-sync-controller": "21.0.0",
"@metamask/snaps-sdk": "8.1.0",
"@metamask/utils": "11.4.2",
"viem": "2.31.7",
"zod": "3.25.76"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@metamask/7715-permissions-shared": "workspace:*",
"@metamask/auto-changelog": "5.0.2",
"@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/snaps-cli": "8.1.1",
"@metamask/snaps-jest": "9.3.0",
"@types/react": "18.3.23",
"@types/react-dom": "18.2.4",
"dotenv": "17.2.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-promise": "6.6.0",
"ethers": "5.8.0",
"jest": "29.7.0",
"rimraf": "6.0.1",
"ts-jest": "29.4.0",
"typescript": "5.8.3"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": "^20 || >=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}