-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.35 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
{
"name": "trekoon",
"version": "0.6.0",
"description": "AI-first task tracking that lives in your repo. You describe what to build, your agent plans it as a dependency graph, then executes it task by task",
"keywords": [
"ai",
"agent",
"skill",
"cli",
"board",
"tracker",
"agent-tracker",
"issue-tracker",
"task-tracker",
"local-first",
"planning",
"worktree"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KristjanPikhof/Trekoon.git"
},
"homepage": "https://github.com/KristjanPikhof/Trekoon#readme",
"bugs": {
"url": "https://github.com/KristjanPikhof/Trekoon/issues"
},
"type": "module",
"bin": {
"trekoon": "./bin/trekoon"
},
"files": [
"bin",
"docs",
"src",
"src/board/assets",
".agents/skills/trekoon",
"README.md",
"LICENSE"
],
"scripts": {
"run": "bun run ./src/index.ts",
"build": "bun build ./src/index.ts --outdir ./dist --target bun && cp ./package.json ./dist/package.json && rm -rf ./dist/assets && cp -R ./src/board/assets ./dist/assets",
"test": "bun test ./tests",
"lint": "bunx tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"typescript": "^5.9.3"
},
"dependencies": {
"@toon-format/toon": "^2.1.0"
},
"engines": {
"bun": ">=1.2.0"
}
}