-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
{
"name": "cursor-usage",
"displayName": "Cursor Usage",
"description": "Track Cursor API request usage from status bar with auto-detected auth",
"version": "1.1.0",
"publisher": "cursor-usage",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "cursor-usage.setToken",
"title": "Cursor Usage: Set Session Token"
},
{
"command": "cursor-usage.clearToken",
"title": "Cursor Usage: Clear Session Token"
},
{
"command": "cursor-usage.refresh",
"title": "Cursor Usage: Refresh"
}
],
"configuration": {
"title": "Cursor Usage",
"properties": {
"cursorUsage.sessionToken": {
"type": "string",
"default": "",
"description": "WorkosCursorSessionToken value. Leave empty to use auto-detection from Cursor's local database."
},
"cursorUsage.autoDetectToken": {
"type": "boolean",
"default": true,
"description": "Automatically detect session token from Cursor's local SQLite database (requires sqlite3 CLI)."
},
"cursorUsage.refreshIntervalMinutes": {
"type": "number",
"default": 15,
"minimum": 1,
"description": "How often to auto-refresh usage (in minutes)."
}
}
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cursor",
"usage",
"tracking",
"status-bar"
],
"author": "",
"license": "MIT"
}