-
-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
31 lines (31 loc) · 905 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
{
"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 check --write",
"lint": "biome lint .",
"ci": "biome ci . && installed-check --no-include-workspace-root --ignore-dev"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"installed-check": "^9.3.0"
}
}