-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
{
"name": "nightytidy",
"version": "0.1.0",
"description": "Automated overnight codebase improvement through Claude Code",
"license": "MIT",
"author": "Dorian Spitz",
"repository": {
"type": "git",
"url": "https://github.com/dorianspitz23/NightyTidy.git"
},
"keywords": [
"claude",
"claude-code",
"ai",
"codebase",
"automation",
"refactoring",
"code-quality"
],
"type": "module",
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"bin": {
"nightytidy": "./bin/nightytidy.js"
},
"scripts": {
"test": "vitest run",
"test:fast": "vitest run --exclude test/git.test.js --exclude test/git-extended.test.js --exclude test/integration.test.js --exclude test/integration-extended.test.js",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"test:flaky": "node scripts/run-flaky-check.js",
"check:docs": "node scripts/check-docs-freshness.js",
"check:security": "npm audit --audit-level=high",
"gui": "node gui/server.js"
},
"engines": {
"node": ">=20.12.0"
},
"dependencies": {
"@inquirer/checkbox": "^5.1.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"node-notifier": "^10.0.1",
"ora": "^9.3.0",
"simple-git": "3.33.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"vitest": "^3.2.4"
}
}