-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "@ndn/root",
"private": true,
"scripts": {
"build": "bash mk/build.sh",
"clang-format": "git ls-files '*.cpp' | xargs -r clang-format-15 -i -style=file",
"cover": "bash mk/build.sh cover",
"lint": "bash mk/build.sh lint",
"literate": "bash mk/literate.sh",
"postinstall": "bash mk/bootstrap.sh",
"preinstall": "npx only-allow pnpm",
"shfmt": "git ls-files -- '*.sh' | xargs -r docker run --rm -u $(id -u):$(id -g) -v $PWD:/mnt -w /mnt mvdan/shfmt:v3 -l -w -s -i=2 -ci",
"test": "vitest",
"typedoc": "bash mk/typedoc.sh"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"devDependencies": {
"@types/node": "^20.17.5",
"@types/wtfnode": "^0.7.3",
"@typescript/lib-dom": "npm:@types/[email protected]",
"@vitest/coverage-v8": "^2.1.4",
"@yoursunny/xo-config": "0.59.0",
"codedown": "^3.2.1",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typescript": "~5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"node": "^20.12.0 || ^22.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint*",
"typescript",
"webpack"
]
},
"updateConfig": {
"ignoreDependencies": [
"abstract-level-1",
"graphql-request"
]
}
}
}