@jnst/cursor-usage 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -8
- package/dist/cli.js +6 -6
- package/dist/web/chunk-4hj5mwma.js +285 -0
- package/dist/web/index.html +1 -1
- package/package.json +23 -16
- package/dist/web/chunk-67e5h0m6.js +0 -285
package/dist/web/index.html
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1' y='8' width='3' height='7' fill='%2358a6ff'/%3E%3Crect x='6' y='4' width='3' height='11' fill='%233fb950'/%3E%3Crect x='11' y='1' width='3' height='14' fill='%23d29922'/%3E%3C/svg%3E"
|
|
10
10
|
/>
|
|
11
11
|
|
|
12
|
-
<link rel="stylesheet" crossorigin href="./chunk-s9hpz9pe.css"><script type="module" crossorigin src="./chunk-
|
|
12
|
+
<link rel="stylesheet" crossorigin href="./chunk-s9hpz9pe.css"><script type="module" crossorigin src="./chunk-4hj5mwma.js"></script></head>
|
|
13
13
|
<body>
|
|
14
14
|
<div id="root"></div>
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,39 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jnst/cursor-usage",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Visualize Cursor usage-events CSV: terminal stats and a drag-and-drop local dashboard",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"cursor",
|
|
8
|
+
"dashboard",
|
|
9
|
+
"usage"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/jnst/cursor-usage#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/jnst/cursor-usage/issues"
|
|
14
|
+
},
|
|
5
15
|
"license": "MIT",
|
|
6
16
|
"repository": {
|
|
7
17
|
"type": "git",
|
|
8
18
|
"url": "git+https://github.com/jnst/cursor-usage.git"
|
|
9
19
|
},
|
|
10
|
-
"homepage": "https://github.com/jnst/cursor-usage#readme",
|
|
11
|
-
"bugs": {
|
|
12
|
-
"url": "https://github.com/jnst/cursor-usage/issues"
|
|
13
|
-
},
|
|
14
|
-
"type": "module",
|
|
15
20
|
"bin": {
|
|
16
21
|
"cursor-usage": "dist/cli.js"
|
|
17
22
|
},
|
|
18
23
|
"files": [
|
|
19
24
|
"dist"
|
|
20
25
|
],
|
|
26
|
+
"type": "module",
|
|
21
27
|
"scripts": {
|
|
22
28
|
"dev": "bun --hot src/server/dev.ts",
|
|
23
29
|
"test": "bun test",
|
|
24
30
|
"typecheck": "tsc --noEmit",
|
|
31
|
+
"fix": "vp fmt . --write",
|
|
32
|
+
"precommit": "bun run typecheck && bun test",
|
|
33
|
+
"prepush": "bun run precommit && bun run build",
|
|
25
34
|
"build": "bun run build.ts",
|
|
35
|
+
"release:patch": "bun run scripts/release.ts patch",
|
|
36
|
+
"release:minor": "bun run scripts/release.ts minor",
|
|
37
|
+
"release:major": "bun run scripts/release.ts major",
|
|
26
38
|
"prepublishOnly": "bun run build"
|
|
27
39
|
},
|
|
28
|
-
"engines": {
|
|
29
|
-
"node": ">=20"
|
|
30
|
-
},
|
|
31
|
-
"keywords": [
|
|
32
|
-
"cursor",
|
|
33
|
-
"usage",
|
|
34
|
-
"cli",
|
|
35
|
-
"dashboard"
|
|
36
|
-
],
|
|
37
40
|
"devDependencies": {
|
|
38
41
|
"@types/bun": "^1.3.14",
|
|
39
42
|
"@types/react": "^19.2.17",
|
|
@@ -41,6 +44,10 @@
|
|
|
41
44
|
"react": "^19.2.7",
|
|
42
45
|
"react-dom": "^19.2.7",
|
|
43
46
|
"recharts": "^3.8.1",
|
|
44
|
-
"typescript": "^6.0.3"
|
|
47
|
+
"typescript": "^6.0.3",
|
|
48
|
+
"vite-plus": "^0.1.24"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=20"
|
|
45
52
|
}
|
|
46
53
|
}
|