forked from webpro-nl/knip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "@knip/root",
"version": "0.0.0",
"private": true,
"description": "Find unused dependencies, exports and files 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": "lars@webpro.nl"
},
"workspaces": [
"packages/*"
],
"scripts": {
"watch": "pnpm run --dir packages/knip watch",
"docs": "pnpm run --dir packages/docs dev",
"test": "pnpm run --dir packages/knip test",
"format": "biome check --write",
"lint": "biome lint .",
"ci": "biome ci . && installed-check --ignore-dev",
"release": "./release.sh"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@release-it/bumper": "^7.0.5",
"installed-check": "^9.3.0",
"mdxlint": "^1.0.0",
"mdxlint-preset-webpro": "^1.1.1",
"release-it": "^19.2.4",
"remark-cli": "12.0.1",
"remark-preset-webpro": "^2.1.1"
},
"remarkConfig": {
"plugins": [
"preset-webpro"
]
},
"mdxlint": {
"plugins": [
"mdxlint-preset-webpro"
]
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.24.0"
}