-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.09 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.09 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
{
"name": "cursor-office",
"displayName": "Cursor Office",
"description": "Your AI agent deserves an office. A pixel art workspace where your Cursor agent types, reads, celebrates, and takes coffee breaks.",
"version": "0.4.0",
"publisher": "ofershap",
"license": "MIT",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#1e1e32",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/ofershap/cursor-office"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"cursor",
"agent",
"pixel-art",
"ai",
"companion",
"interactive",
"office",
"coding-assistant",
"cursor-office",
"agent-office"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cursorOffice.show",
"title": "Cursor Office: Show"
},
{
"command": "cursorOffice.enableHooks",
"title": "Cursor Office: Enable Hooks (Precise Agent Detection)"
},
{
"command": "cursorOffice.disableHooks",
"title": "Cursor Office: Disable Hooks"
}
],
"keybindings": [
{
"command": "cursorOffice.show",
"key": "ctrl+shift+.",
"mac": "cmd+shift+."
}
],
"viewsContainers": {
"panel": [
{
"id": "cursorOffice",
"title": "Cursor Office",
"icon": "$(briefcase)"
}
]
},
"views": {
"cursorOffice": [
{
"type": "webview",
"id": "cursorOffice.panel",
"name": "💼 Office"
}
]
}
},
"scripts": {
"build": "node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"package": "vsce package --allow-star-activation",
"context:lint": "ai-context-kit lint",
"context:measure": "ai-context-kit measure"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"ai-context-kit": "^0.1.1",
"esbuild": "^0.24.0",
"typescript": "^5.7.0"
}
}