-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.84 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.84 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "agentuse-runner",
"displayName": "AgentUse Runner",
"description": "Run .agentuse files with IntelliSense, syntax highlighting, and autocomplete",
"version": "0.1.0",
"publisher": "agentuse",
"author": {
"name": "AgentUse",
"url": "https://agentuse.io"
},
"license": "MIT",
"homepage": "https://agentuse.io",
"repository": {
"type": "git",
"url": "https://github.com/agentuse/vscode-agentuse"
},
"bugs": {
"url": "https://github.com/agentuse/vscode-agentuse/issues"
},
"keywords": [
"agentuse",
"ai",
"agent",
"automation",
"llm",
"mcp"
],
"engines": {
"vscode": "^1.85.0"
},
"icon": "icons/icon.png",
"galleryBanner": {
"color": "#0A0A0A",
"theme": "dark"
},
"preview": true,
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:agentuse"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "agentuse",
"aliases": ["AgentUse", "agentuse"],
"extensions": [".agentuse"],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/agentuse-letter-logo-black.svg",
"dark": "./icons/agentuse-letter-logo-white.svg"
}
}
],
"grammars": [
{
"language": "agentuse",
"scopeName": "source.agentuse",
"path": "./syntaxes/agentuse.tmLanguage.json"
}
],
"snippets": [
{
"language": "agentuse",
"path": "./snippets/agentuse.json"
}
],
"commands": [
{
"command": "agentuse.run",
"title": "Run AgentUse File",
"icon": "$(play)"
},
{
"command": "agentuse.closeTerminal",
"title": "Close Active AgentUse Terminal"
}
],
"menus": {
"editor/title/run": [
{
"when": "resourceExtname == .agentuse",
"command": "agentuse.run",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "agentuse.closeTerminal",
"key": "ctrl+w",
"mac": "cmd+w",
"when": "terminalFocus && terminalProcessSupported"
}
]
},
"scripts": {
"sync-cli": "npx tsx scripts/sync-cli.ts",
"prebuild": "pnpm sync-cli",
"vscode:prepublish": "pnpm run compile",
"compile": "pnpm sync-cli && tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package -o dist/",
"publish:vsce": "vsce publish -p $VSCE_PAT",
"publish:ovsx": "ovsx publish dist/agentuse-runner-*.vsix --pat $OVSX_PAT",
"publish": "pnpm run publish:vsce && pnpm run publish:ovsx"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.6.2",
"ovsx": "^0.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}