-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
61
62
63
64
65
66
{
"name": "devflow-kit",
"version": "1.4.0",
"description": "Agentic Development Toolkit for Claude Code - Enhance AI-assisted development with intelligent commands and workflows",
"type": "module",
"bin": {
"devflow": "dist/cli.js"
},
"files": [
"dist/",
"!dist/**/*.map",
"plugins/",
"shared/",
"scripts/hooks/",
"src/templates/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "npm run build:cli && npm run build:plugins",
"build:cli": "tsc",
"build:plugins": "npx tsx scripts/build-plugins.ts",
"dev": "tsc --watch",
"cli": "node dist/cli.js",
"prepublishOnly": "npm run build",
"version:bump": "npx tsx scripts/bump-version.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts"
},
"keywords": [
"claude",
"claude-code",
"ai",
"development",
"toolkit",
"devflow",
"cli",
"developer-tools"
],
"author": "DevFlow Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dean0x/devflow.git"
},
"bugs": {
"url": "https://github.com/dean0x/devflow/issues"
},
"homepage": "https://dean0x.github.io/x/devflow/",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^12.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}