-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@akrc/nc",
"version": "0.0.1",
"description": "Node.js project cleanup CLI tool with framework-aware detection",
"type": "module",
"bin": {
"nclean": "./bin/nclean.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e",
"lint": "eslint src tests",
"format": "prettier --write src tests",
"prepare": "npm run build || true"
},
"keywords": [
"node",
"clean",
"cleanup",
"node_modules",
"cli",
"framework"
],
"author": "AkaraChen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AkaraChen/nc.git"
},
"bugs": {
"url": "https://github.com/AkaraChen/nc/issues"
},
"homepage": "https://github.com/AkaraChen/nc#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"dependencies": {
"commander": "^12.0.0",
"fast-glob": "^3.3.2",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"rimraf": "^5.0.5"
}
}