-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.19 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.19 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
55
{
"name": "cursor-usage",
"type": "module",
"version": "0.1.4",
"description": "CLI tool for analyzing Cursor usage and token consumption",
"author": "yifen <anthonyeef@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Anthonyeef/cursor-usage.git"
},
"keywords": [
"cursor",
"cli",
"usage",
"analytics",
"tokens",
"api",
"cursor-ai"
],
"bugs": {
"url": "https://github.com/Anthonyeef/cursor-usage/issues"
},
"homepage": "https://github.com/Anthonyeef/cursor-usage#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "tsx src/index.ts",
"test": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"dependencies": {
"cli-table3": "^0.6.5",
"picocolors": "^1.1.1",
"sql.js": "^1.8.0"
},
"devDependencies": {
"@types/node": "^20.10.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}