-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "codexmeter",
"version": "1.0.19",
"description": "Local telemetry dashboard for Codex CLI usage",
"type": "module",
"bin": {
"codexmeter": "./bin/codexmeter.js"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"files": [
"bin",
"server",
"src/utils/animationsDefault.js",
"dist",
"README.md",
"package.json"
],
"scripts": {
"dev": "node dev-runner.js",
"build": "vite build",
"prepack": "npm run build",
"pretest": "npm run build",
"test": "node --test \"test/*.test.js\" \"test/**/*.test.js\"",
"start": "node bin/codexmeter.js",
"preview": "npm run build && node bin/codexmeter.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"ffmpeg-static": "^5.2.0",
"open": "^11.0.0",
"playwright-core": "^1.58.2"
},
"devDependencies": {
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"echarts": "^6.0.0",
"echarts-for-react": "^3.0.2",
"nodemon": "^3.1.14",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"vite": "^8.0.0"
}
}