-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1021 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1021 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@viren/claude-code-dashboard",
"version": "0.0.11",
"description": "A visual dashboard for your Claude Code configuration across all repos",
"type": "module",
"bin": {
"claude-code-dashboard": "./generate-dashboard.mjs"
},
"scripts": {
"generate": "node generate-dashboard.mjs",
"test": "node --test test/*.test.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check && npm test"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"claude",
"claude-code",
"dashboard",
"developer-tools",
"cli"
],
"author": "Viren Mohindra",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VirenMohindra/claude-code-dashboard"
},
"files": [
"generate-dashboard.mjs",
"src/",
"template/"
],
"devDependencies": {
"eslint": "^9.0.0",
"prettier": "^3.0.0"
}
}