-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "claude-code-starter-files",
"version": "2.0.0",
"description": "Claude Code Starter Files - A structured workflow template for AI-assisted development",
"type": "module",
"private": true,
"author": "Dylan Burkey",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/dylanburkey/claude-code-lib.git"
},
"scripts": {
"lint": "eslint cli/src cli/bin",
"lint:fix": "eslint cli/src cli/bin --fix",
"lint:jsdoc": "eslint cli/src cli/bin --rule 'jsdoc/require-jsdoc: error'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"validate": "pnpm lint && pnpm format:check && pnpm test"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"eslint": "^9.0.0",
"eslint-plugin-jsdoc": "^50.0.0",
"prettier": "^3.2.0",
"vitest": "^2.0.0",
"yaml-lint": "^1.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"claude",
"claude-code",
"ai-development",
"workflow",
"agents",
"starter-template",
"spec-driven-development"
]
}