-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 873 Bytes
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
{
"name": "devlog",
"version": "3.34.0",
"description": "Automatic dev tracking for Claude Code via hooks and tags",
"type": "module",
"private": true,
"scripts": {
"start": "bun src/server.ts",
"dev": "bun --watch src/server.ts",
"build": "bun build ./src/server.ts --compile --outfile devlog.exe",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"coverage:gate": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage && bun scripts/coverage-gate.ts coverage/lcov.info",
"doctor": "bun src/doctor.ts",
"smoke:ui": "bun scripts/ui-smoke.ts",
"lint": "biome lint .",
"typecheck": "tsc --noEmit"
},
"engines": {
"bun": ">=1.3.14"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"bun-types": "^1.3.14",
"typescript": "7.0.2"
}
}