-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.3 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
{
"name": "@coredirective/cf-dash",
"publishConfig": {
"access": "public"
},
"version": "0.1.0",
"description": "Claude Code session analytics dashboard",
"type": "module",
"bin": {
"codeforge-dashboard": "bin/codeforge-dashboard"
},
"files": [
"bin/",
"src/server/",
"src/parser/",
"build/",
"scripts/"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"dev": "bun run src/server/index.ts",
"dev:web": "vite dev",
"build": "vite build",
"test": "bun test",
"preview": "vite preview",
"prepublishOnly": "echo 'Build and tests handled by CI workflow'"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.1",
"@types/bun": "^1.3.10",
"d3-scale": "^4.0.2",
"layerchart": "^2.0.0-next.46",
"marked": "^17.0.4",
"shiki": "^4.0.2",
"svelte": "^5.53.12",
"tailwindcss": "^4.2.1",
"typescript": "^5.7.0",
"vite": "^8.0.0"
},
"license": "GPL-3.0",
"author": "AnExiledDev",
"repository": {
"type": "git",
"url": "git+https://github.com/AnExiledDev/CodeForge.git",
"directory": "dashboard"
},
"homepage": "https://github.com/AnExiledDev/CodeForge/tree/main/dashboard#readme",
"bugs": {
"url": "https://github.com/AnExiledDev/CodeForge/issues"
}
}