-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "cursor-limits",
"displayName": "Cursor Limits",
"publisher": "naumanmoazzam",
"description": "Show Cursor fast/slow limits in the status bar",
"version": "0.0.5",
"icon": "icon.png",
"license": "MIT",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cursorStatusline.openDashboard",
"title": "Cursor: Open Usage Panel"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vsix": "vsce package --allow-star-activation"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/sql.js": "^1.4.11",
"@types/vscode": "^1.80.0",
"@vscode/vsce": "^3.2.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NaumanMoazzam/cursor-limits.git"
},
"bugs": {
"url": "https://github.com/NaumanMoazzam/cursor-limits/issues"
},
"homepage": "https://github.com/NaumanMoazzam/cursor-limits#readme",
"dependencies": {
"sql.js": "^1.14.1"
}
}