-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "track-cli",
"version": "0.1.0",
"description": "Minimal, AI-friendly CLI for tracking project progress across sessions",
"main": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./lib": "./dist/lib/index.js"
},
"bin": {
"track": "./dist/index.js"
},
"scripts": {
"build": "tsc && cp -r src/mcp/data dist/mcp/",
"dev": "tsc --watch",
"mcp:start": "node dist/mcp/server.js",
"mcp:dev": "npm run dev",
"mcp:sync": "npm run build && node scripts/mcp-sync.js && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"project-management",
"task-tracking",
"ai-agent",
"progress-tracker"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"better-sqlite3": "^12.4.1",
"commander": "^14.0.2",
"nanoid": "^5.1.6",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^4.0.10",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
}
}