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
60 lines (60 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.42 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
55
56
57
58
59
60
{
"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",
"bugs": "https://github.com/webpro-nl/knip/issues",
"license": "ISC",
"author": {
"name": "Lars Kappert",
"email": "lars@webpro.nl"
},
"repository": {
"type": "git",
"url": "https://github.com/webpro-nl/knip"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"watch": "pnpm run --dir packages/knip watch",
"docs": "pnpm run --dir packages/docs dev",
"test": "pnpm run --dir packages/knip test",
"format": "oxfmt",
"lint": "oxlint",
"ci": "oxlint && oxfmt --check && installed-check --ignore-dev",
"release": "./scripts/release.sh"
},
"devDependencies": {
"@release-it/bumper": "^7.0.5",
"installed-check": "^9.3.0",
"mdxlint": "^1.0.0",
"mdxlint-preset-webpro": "^1.1.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"release-it": "^19.2.4",
"remark-cli": "12.0.1",
"remark-preset-webpro": "^2.1.1"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"trailingComma": "es5"
},
"remarkConfig": {
"plugins": [
"preset-webpro"
]
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.24.0",
"mdxlint": {
"plugins": [
"mdxlint-preset-webpro"
]
}
}