-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 771 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 771 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
34
{
"name": "@kvnwolf/devtools",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"lint": "biome check",
"setup": "bun run scripts/setup.ts",
"types": "tsgo --build",
"test": "vitest run",
"unused": "knip",
"update": "taze --interactive"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "^1.3.10",
"@typescript/native-preview": "^7.0.0-dev.20260305.1",
"knip": "^5.85.0",
"simple-git-hooks": "^2.13.1",
"taze": "^19.10.0",
"turbo": "^2.8.13",
"ultracite": "^7.2.5",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "bun run turbo validate"
},
"knip": {
"ignoreDependencies": [
"turbo"
]
},
"packageManager": "bun@1.3.10"
}