-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 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
53
54
{
"name": "@jnst/cursor-usage",
"version": "0.6.0",
"description": "Visualize Cursor usage-events CSV: terminal stats and a drag-and-drop local dashboard",
"keywords": [
"cli",
"cursor",
"dashboard",
"usage"
],
"homepage": "https://github.com/jnst/cursor-usage#readme",
"bugs": {
"url": "https://github.com/jnst/cursor-usage/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jnst/cursor-usage.git"
},
"bin": {
"cursor-usage": "dist/cli.js"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"dev": "bun --hot src/server/dev.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"fix": "vp fmt . --write",
"precommit": "bun run typecheck && bun test",
"prepush": "bun run precommit && bun run build",
"build": "bun run build.ts",
"release": "bun run scripts/release.ts minor",
"prepublishOnly": "bun run build"
},
"dependencies": {
"playwright-core": "^1.60.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^3.8.1",
"typescript": "^6.0.3",
"vite-plus": "^0.1.24"
},
"engines": {
"node": ">=20"
}
}