-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"devDependencies": {
"@types/node": "^22.10.7",
"@types/wtfnode": "^0.7.3",
"@typescript/lib-dom": "npm:@types/[email protected]",
"@vitest/coverage-v8": "^3.0.3",
"@yoursunny/xo-config": "0.60.0",
"codedown": "^3.2.1",
"tslib": "^2.8.1",
"typedoc": "^0.27.6",
"typescript": "~5.7.3",
"vitest": "^3.0.3"
},
"engines": {
"node": "^20.18.0 || ^22.11.0 || ^23.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint*",
"typescript",
"webpack"
]
},
"updateConfig": {
"ignoreDependencies": [
"abstract-level",
"graphql-request"
]
}
}
}