-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "@kosinal/claude-code-dashboard",
"version": "1.0.0",
"type": "module",
"description": "Real-time browser dashboard for Claude Code session states",
"bin": {
"claude-code-dashboard": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "node --experimental-strip-types --test src/**/*.test.ts",
"lint": "biome check src/ tsup.config.ts",
"lint:fix": "biome check --write src/ tsup.config.ts",
"format": "biome format --write src/ tsup.config.ts"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
},
"keywords": [
"claude",
"claude-code",
"dashboard",
"monitoring"
],
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/kosinal/claude-code-dashboard.git"
},
"homepage": "https://github.com/kosinal/claude-code-dashboard#readme",
"bugs": {
"url": "https://github.com/kosinal/claude-code-dashboard/issues"
},
"publishConfig": {
"access": "public"
}
}