-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 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
{
"name": "@ramonclaudio/ccbase",
"version": "0.1.1",
"description": "Local analytics dashboard, searchable chat history, cost tracking, and session replay for Claude Code",
"type": "module",
"license": "MIT",
"author": "Ray <hello@ramonclaudio.com>",
"repository": {
"type": "git",
"url": "https://github.com/ramonclaudio/ccbase.git"
},
"keywords": [
"claude-code",
"analytics",
"dashboard",
"sqlite",
"bun",
"cli"
],
"bin": {
"ccbase": "./src/index.ts"
},
"files": [
"src",
"data/.gitkeep"
],
"scripts": {
"start": "bun run src/index.ts serve",
"dev": "bun --watch run src/index.ts serve",
"ingest": "bun run src/index.ts ingest",
"build": "bun build --compile --bytecode --minify --sourcemap --define __BUILD_TIME__=$(date +%s) --define __VERSION__='\"'$(node -p 'require(\"./package.json\").version')'\"' ./src/index.ts --outfile=./dist/ccbase",
"build:bundle": "bun build --bytecode --target=bun --minify --sourcemap --outdir=./dist ./src/index.ts"
},
"devDependencies": {
"bun-types": "^1.3.11"
}
}