-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.89 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
{
"name": "pvf-parser-workspace",
"private": true,
"type": "module",
"scripts": {
"bench": "pnpm --filter pvf-explorer bench",
"check": "pnpm lint && pnpm format:check && pnpm spellcheck && pnpm typecheck",
"dev": "pnpm --filter pvf-explorer dev",
"format": "dprint fmt",
"format:check": "dprint check",
"postinstall": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "pnpm prepare:fixtures",
"prepare:fixtures": "node --use-env-proxy scripts/prepare-fixtures.mjs",
"spellcheck": "cspell lint --no-progress .",
"test": "pnpm -r --if-present test",
"typecheck": "pnpm -r --if-present check"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"eslint --fix",
"dprint fmt --allow-no-files --"
],
"!(package).json": [
"dprint fmt --allow-no-files --"
],
"*.{jsonc,md,html,css,yml,yaml}": [
"dprint fmt --allow-no-files --"
],
"package.json": [
"sort-package-json",
"dprint fmt --allow-no-files --"
]
},
"dependencies": {
"@pvf/pvf-mod": "workspace:*"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@eslint/markdown": "^8.0.1",
"@tsconfig/node24": "^24.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^24.0.0",
"cspell": "^9.2.1",
"dprint": "^0.53.2",
"eslint": "^9.25.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"sort-package-json": "^3.4.0",
"typescript-eslint": "^8.30.1"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"engines": {
"node": ">=24"
}
}