-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1022 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1022 Bytes
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
{
"name": "@metamask/skills",
"version": "0.1.0",
"description": "Shared MetaMask agent skills installer and sync CLI.",
"license": "MIT",
"type": "module",
"bin": {
"metamask-skills": "bin/metamask-skills.mjs"
},
"files": [
"bin/",
"domains/",
"tools/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"smoke": "node bin/metamask-skills.mjs --help",
"build": "node bin/metamask-skills.mjs --help",
"test": "node --test test/*.test.mjs",
"pack:dry-run": "yarn pack --dry-run",
"lint": "yarn lint:changelog",
"lint:changelog": "auto-changelog validate --formatter oxfmt"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/skills.git"
},
"engines": {
"node": "^18.18 || >=20"
},
"packageManager": "yarn@4.16.0",
"devDependencies": {
"@metamask/auto-changelog": "^6.1.1",
"oxfmt": "^0.45.0"
}
}