-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.16 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@moose-lab/devlog",
"version": "0.5.0",
"description": "Searchable AI coding-agent work journal CLI and dashboard for Claude Code sessions",
"type": "module",
"packageManager": "bun@1.3.14",
"repository": {
"type": "git",
"url": "https://github.com/moose-lab/DevLog.git"
},
"homepage": "https://github.com/moose-lab/DevLog#readme",
"bugs": {
"url": "https://github.com/moose-lab/DevLog/issues"
},
"bin": {
"devlog": "./dist/cli.js"
},
"files": [
"dist",
"scripts",
"!scripts/generate-test-data.ts",
"!scripts/task-launch-e2e.mjs",
"!scripts/task-launch-e2e-config.mjs"
],
"scripts": {
"prepare": "husky",
"prepublishOnly": "tsup",
"dev": "next dev",
"build": "next build",
"build:cli": "tsup",
"build:web": "next build",
"start": "next start",
"test": "node --test --import tsx --test-reporter spec 'src/core/__tests__/*.test.ts' 'src/components/sessions/*.test.ts'",
"test:e2e:task-launch": "node scripts/task-launch-e2e.mjs",
"typecheck": "tsc --noEmit",
"quality:precommit": "git diff --cached --check && bun run typecheck && TZ=Asia/Shanghai bun run test",
"quality:build": "bun run build:web && bun run build:cli",
"quality:ci": "bun run typecheck && TZ=Asia/Shanghai bun run test && bun run quality:build",
"quality": "bun run quality:ci"
},
"keywords": [
"ai-coding-agents",
"agent-observability",
"agent-workflows",
"claude",
"claude-code",
"coding-agent",
"devlog",
"cli",
"developer-tools",
"dashboard",
"work-journal"
],
"author": "Moose Lab",
"license": "MIT",
"engines": {
"node": ">=20.11"
},
"devEngines": {
"packageManager": {
"name": "bun",
"version": ">=1.3.14",
"onFail": "error"
}
},
"dependencies": {
"@hello-pangea/dnd": "^17.0.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"anser": "^2.1.1",
"better-sqlite3": "^11.8.1",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"class-variance-authority": "^0.7.1",
"cli-table3": "^0.6.5",
"clsx": "^2.1.1",
"commander": "^14.0.3",
"dayjs": "^1.11.19",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"node-pty": "^1.0.0",
"ora": "^9.3.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-is": "^19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.0",
"tailwind-merge": "^3.4.0",
"toml": "^3.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"husky": "^9.1.7",
"shadcn": "^3.8.4",
"tailwindcss": "^4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}