-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.05 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@dvc2/tasktracker-cli",
"version": "3.0.0",
"description": "Developer context journal for AI-assisted coding - maintain project context across sessions",
"main": "bin/tt",
"bin": {
"tt": "./bin/tt"
},
"preferGlobal": true,
"scripts": {
"start": "node ./bin/tt",
"init": "node ./bin/tt init",
"test": "mocha tests/unit/*.test.js",
"test:journal": "mocha tests/unit/journal.test.js",
"test:prd": "mocha tests/unit/prd.test.js",
"test:context": "mocha tests/unit/context.test.js",
"test:all": "mocha tests/**/*.test.js",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm test",
"optimize:deps": "node scripts/optimize-deps.js",
"benchmark": "node scripts/benchmark.js",
"size": "du -sh node_modules && find node_modules -maxdepth 1 -type d | wc -l",
"demo": "node ./bin/tt demo",
"quickstart": "node ./bin/tt quickstart"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tasktracker-cli/tasktracker.git"
},
"keywords": [
"developer-journal",
"context-management",
"ai-assistant",
"development-context",
"project-memory",
"cli",
"developer-tools",
"ai-context",
"coding-assistant",
"project-documentation",
"development-workflow",
"git-integration",
"developer-memory",
"ai-coding"
],
"author": "TaskTracker Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/tasktracker-cli/tasktracker/issues"
},
"homepage": "https://github.com/tasktracker-cli/tasktracker#readme",
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.29.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.7.0",
"rimraf": "^3.0.2",
"sinon": "^20.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"bin/",
"lib/",
"docs/",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}