forked from NomicFoundation/hardhat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 909 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 909 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
{
"name": "root",
"version": "0.0.0",
"author": "Nomic Foundation",
"license": "SEE LICENSE IN EACH PACKAGE'S LICENSE FILE",
"private": true,
"packageManager": "pnpm@10.17.1",
"devDependencies": {
"@changesets/cli": "^2.16.0",
"typescript": "~5.8.0"
},
"scripts": {
"build": "pnpm run --recursive --if-present build",
"clean": "pnpm run --recursive --if-present clean",
"test": "pnpm run --recursive --if-present test",
"prelint": "pnpm build",
"lint": "pnpm run --recursive --if-present lint",
"prelint:fix": "pnpm build",
"lint:fix": "pnpm run --recursive --if-present lint:fix",
"version-for-release": "pnpm changeset version && pnpm -w install --lockfile-only"
},
"pnpm": {
"onlyBuiltDependencies": [
"node-hid"
],
"ignoredBuiltDependencies": [
"esbuild",
"keccak",
"unrs-resolver",
"usb"
]
}
}