-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 788 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 788 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
{
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"lint": "npm run lint:prettier && npm run lint:tsc",
"format": "prettier --write .",
"publish:dry-run": "npx jsr publish --dry-run --allow-dirty",
"test": "vitest --typecheck"
},
"dependencies": {
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.8.7",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"lint-staged": {
"*.{ts,md,json,yml}": "prettier --write"
},
"volta": {
"node": "22.11.0"
}
}