-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.69 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cursor-usage-tracker",
"version": "0.0.0-development",
"description": "Open-source Cursor IDE usage monitoring, anomaly detection, and alerting for enterprise teams",
"homepage": "https://github.com/ofershap/cursor-usage-tracker#readme",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"prepare": "husky",
"collect": "npx tsx --env-file=.env src/lib/cli/collect.ts",
"detect": "npx tsx --env-file=.env src/lib/cli/detect.ts",
"generate:mock": "tsx scripts/generate-mock-db.ts",
"dev:mock": "DATABASE_PATH=data/mock.db next dev"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"bin": {
"cursor-usage-tracker": "bin/create.mjs"
},
"files": [
"bin/"
],
"keywords": [
"cursor",
"cursor-ide",
"usage-monitoring",
"anomaly-detection",
"cost-tracking",
"enterprise",
"developer-tools",
"ai-spending"
],
"author": "Ofer Shapira",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ofershap/cursor-usage-tracker.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"bugs": {
"url": "https://github.com/ofershap/cursor-usage-tracker/issues"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"better-sqlite3": "^12.6.2",
"next": "^16.1.6",
"next-auth": "^5.0.0-beta.30",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.7.0",
"resend": "^6.9.2",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@elevenlabs/elevenlabs-js": "^2.36.0",
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}