forked from webpro-nl/knip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 974 Bytes
/
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
{
"name": "@knip/root",
"version": "0.0.0",
"private": true,
"description": "Find unused files, dependencies and exports in your TypeScript and JavaScript projects",
"homepage": "https://knip.dev",
"repository": {
"type": "git",
"url": "https://github.com/webpro-nl/knip"
},
"bugs": "https://github.com/webpro-nl/knip/issues",
"license": "ISC",
"type": "module",
"author": {
"name": "Lars Kappert",
"email": "[email protected]"
},
"workspaces": ["packages/*"],
"scripts": {
"watch": "bun run --cwd packages/knip watch",
"docs": "bun run --cwd packages/docs dev",
"test": "bun run --cwd packages/knip test",
"format": "biome format .",
"lint": "biome lint .",
"ci": "biome ci . && installed-check --no-include-workspace-root --ignore-dev",
"waitDB": "./wait-for-postgres.sh -h localhost -p 5433 -U dev -r 10"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"installed-check": "^9.3.0"
}
}