-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.76 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.76 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
{
"name": "cursor-usage-mcp",
"version": "0.1.2",
"description": "MCP server and Cursor plugin for querying Cursor Enterprise usage, spending, and analytics",
"type": "module",
"main": "dist/server.js",
"bin": {
"cursor-usage": "dist/server.js"
},
"files": [
"dist",
"skills",
"rules",
"commands",
"agents",
"mcp.json",
".cursor-plugin"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/server.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"validate": "node scripts/validate.mjs",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"keywords": [
"cursor",
"mcp",
"usage",
"analytics",
"enterprise",
"spending",
"admin-api",
"ai-spend",
"model-context-protocol"
],
"author": {
"name": "Ofer Shapira",
"url": "https://github.com/ofershap"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ofershap/cursor-usage.git"
},
"bugs": {
"url": "https://github.com/ofershap/cursor-usage/issues"
},
"homepage": "https://github.com/ofershap/cursor-usage#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.24.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.0",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vitest": "^3.0.0"
}
}