generated from MetaMask/metamask-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 3.29 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@metamask/accounts-monorepo",
"version": "25.0.0",
"private": true,
"description": "Monorepo for MetaMask accounts related packages",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/accounts.git"
},
"files": [],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "ts-bridge --project tsconfig.build.json",
"build:clean": "yarn build --clean",
"build:docs": "yarn foreach build:docs",
"foreach": "yarn workspaces foreach --all --parallel --verbose --exclude '@metamask/accounts-monorepo' run",
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn constraints && yarn lint:dependencies && yarn lint:readme",
"lint:dependencies": "yarn foreach depcheck && yarn dedupe --check && syncpack list-mismatches",
"lint:dependencies:fix": "yarn foreach depcheck && yarn dedupe && syncpack fix-mismatches",
"lint:eslint": "eslint . --cache --ext js,cjs,mjs,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies:fix",
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path .gitignore",
"lint:readme": "yarn readme:update",
"prepare:preview": "ts-node --project tsconfig.scripts.json scripts/prepare-preview-builds.ts",
"prepare:preview:local": "yarn prepare:preview @metamask-previews $(git rev-parse --short HEAD)",
"publish:preview": "yarn foreach publish:preview",
"readme:update": "ts-node --project tsconfig.scripts.json scripts/update-readme-content.ts",
"release": "./scripts/release.sh",
"setup": "yarn install",
"test": "yarn foreach test",
"test:clean": "yarn foreach test:clean"
},
"resolutions": {
"@types/node": "^20.12.12",
"@types/web": "^0.0.69",
"@typescript/lib-dom": "npm:@types/web@^0.0.69",
"[email protected]": "^1.7.7",
"[email protected]": "^7.5.10"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.2.1",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/create-release-branch": "^3.1.0",
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config-jest": "^13.0.0",
"@metamask/eslint-config-nodejs": "^13.0.0",
"@metamask/eslint-config-typescript": "^13.0.0",
"@npmcli/package-json": "^5.0.0",
"@ts-bridge/cli": "^0.6.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import-x": "^0.5.3",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^47.0.2",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.6.0",
"execa": "^5.0.0",
"jest": "^29.5.0",
"jest-it-up": "^3.1.0",
"jest-silent-reporter": "^0.5.0",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.5.2",
"syncpack": "^13.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "~5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18.18 || >=20"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
}
}