-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.92 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.92 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
95
96
97
98
99
100
101
102
103
104
{
"name": "@metamask/accounts-monorepo",
"version": "102.0.0",
"private": true,
"description": "Monorepo for MetaMask accounts related packages",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/accounts.git"
},
"workspaces": [
"packages/*"
],
"files": [],
"scripts": {
"build": "ts-bridge --project tsconfig.build.json",
"build:clean": "yarn build --clean",
"build:docs": "yarn foreach build:docs",
"build:only-clean": "rimraf -g 'packages/*/dist'",
"build:types": "tsc --build tsconfig.build.json --verbose",
"create-release-branch": "create-release-branch --formatter oxfmt",
"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",
"lint:dependencies:fix": "yarn foreach depcheck && yarn dedupe",
"lint:eslint": "yarn build:only-clean && yarn eslint",
"lint:fix": "yarn lint:eslint --fix --prune-suppressions && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies:fix",
"lint:misc": "oxfmt --ignore-path .gitignore",
"lint:misc:check": "yarn lint:misc --check",
"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",
"test:types": "yarn foreach test:types"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.2.1",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/create-release-branch": "^4.2.0",
"@metamask/eslint-config": "^15.0.0",
"@metamask/eslint-config-jest": "^15.0.0",
"@metamask/eslint-config-nodejs": "^15.0.0",
"@metamask/eslint-config-typescript": "^15.0.0",
"@metamask/utils": "^11.11.0",
"@npmcli/package-json": "^5.0.0",
"@ts-bridge/cli": "^0.6.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.191",
"@types/node": "^20.12.12",
"@types/semver": "^7",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@yarnpkg/types": "^4.0.0",
"depcheck": "^1.4.7",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.2.4",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"execa": "^5.0.0",
"jest": "^29.5.0",
"jest-it-up": "^3.1.0",
"jest-silent-reporter": "^0.5.0",
"lodash": "^4.17.21",
"oxfmt": "^0.44.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.2",
"rimraf": "^5.0.7",
"semver": "^7.6.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "~5.6.3",
"typescript-eslint": "^8.48.0"
},
"resolutions": {
"@types/node": "^20.12.12",
"@types/web": "^0.0.69",
"@typescript/lib-dom": "npm:@types/web@^0.0.69",
"axios@1.7.3": "^1.7.7",
"eslint-import-resolver-typescript": "<=3.7.0",
"eslint-plugin-import-x": "<=4.6.1",
"napi-postinstall": "npm:npm-empty-package@^1.0.0",
"ws@7.4.6": "^7.5.10"
},
"engines": {
"node": "^18.18 || >=20"
},
"packageManager": "yarn@4.10.3",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"eslint-plugin-import-x>unrs-resolver": false
}
}
}