-
-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.09 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.09 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
{
"name": "@metamask/messenger-cli",
"version": "0.1.0",
"description": "CLI tools for the MetaMask messenger system",
"keywords": [
"Ethereum",
"MetaMask"
],
"homepage": "https://github.com/MetaMask/core/tree/main/packages/messenger-cli#readme",
"bugs": {
"url": "https://github.com/MetaMask/core/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/core.git"
},
"bin": {
"messenger-action-types": "./dist/cli.mjs"
},
"files": [
"dist/"
],
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
"build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
"changelog:update": "../../scripts/update-changelog.sh @metamask/messenger-cli",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/messenger-cli",
"since-latest-release": "../../scripts/since-latest-release.sh",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
"test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
"test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"@metamask/utils": "^11.9.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@metamask/auto-changelog": "^6.1.0",
"@ts-bridge/cli": "^0.6.4",
"@types/jest": "^29.5.14",
"@types/yargs": "^17.0.32",
"deepmerge": "^4.2.2",
"eslint": "^9.39.1",
"execa": "^5.0.0",
"jest": "^29.7.0",
"oxfmt": "^0.44.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "~5.3.3"
},
"peerDependencies": {
"oxfmt": "^0.44.0",
"prettier": "^3.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"oxfmt": {
"optional": true
},
"prettier": {
"optional": true
}
},
"engines": {
"node": "^18.18 || >=20"
}
}