-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "codex-analytics-ledger",
"version": "0.1.0",
"private": true,
"description": "A privacy-first, local-only dashboard for Codex usage, model performance, and API-equivalent cost estimates.",
"license": "MIT",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "cross-env NEXT_TELEMETRY_DISABLED=1 next dev --hostname 127.0.0.1",
"build": "cross-env NEXT_TELEMETRY_DISABLED=1 next build",
"start": "cross-env NEXT_TELEMETRY_DISABLED=1 next start --hostname 127.0.0.1",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run lint && npm run build"
},
"dependencies": {
"cross-env": "^10.1.0",
"lucide-react": "^1.24.0",
"next": "16.2.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^24.13.3",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"tailwindcss": "^4",
"typescript": "^5"
}
}