-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.07 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
{
"name": "devtask",
"version": "0.1.0",
"description": "YAML-driven task management with auto-generated MASTER_TASKS.md and Claude Code integration",
"type": "module",
"bin": {
"devtask": "./dist/bin/devtask.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"templates/"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"task-management",
"claude-code",
"yaml",
"markdown-generation",
"project-tracking",
"cli"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}