-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 4.46 KB
/
package.json
File metadata and controls
170 lines (170 loc) · 4.46 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "fastedge",
"displayName": "FastEdge Launcher",
"version": "0.1.28",
"publisher": "g-corelabssa",
"description": "Launcher for FastEdge apps",
"icon": "images/fastedge.png",
"repository": "https://github.com/G-Core/FastEdge-vscode",
"engines": {
"vscode": "^1.106.0",
"node": "20 - 24.x.x",
"npm": "^9 || ^10"
},
"categories": [
"Debuggers"
],
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"workspace"
],
"main": "./dist/extension.js",
"scripts": {
"check-types": "tsc --noEmit",
"build:dev": "node esbuild/build-ext.js --watch",
"build": "npm run check-types && node esbuild/build-ext.js --prod",
"package": "vsce package --no-dependencies",
"lint": "eslint src --ext ts",
"test": "vitest run src/**/*.test.ts"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@vscode/vsce-sign",
"keytar"
],
"overrides": {
"flatted": ">=3.4.2"
}
},
"contributes": {
"configuration": {
"type": "object",
"title": "FastEdge Launcher",
"properties": {
"fastedge.cliVersion": {
"type": "string",
"default": "unknown",
"description": "The version of the FastEdge-run executable used by the extension",
"scope": "window",
"readOnly": true
},
"fastedge.apiUrl": {
"type": "string",
"default": "https://api.gcore.com",
"description": "Default FastEdge API URL for MCP server configuration",
"scope": "application"
}
}
},
"commands": [
{
"command": "fastedge.run-file",
"title": "Debug: FastEdge App (Current File)"
},
{
"command": "fastedge.run-workspace",
"title": "Debug: FastEdge App (Package Entry)"
},
{
"command": "fastedge.init-workspace",
"title": "FastEdge: Initialize workspace (create launch.json)"
},
{
"command": "fastedge.generate-mcp-json",
"title": "FastEdge (Generate mcp.json)"
},
{
"command": "fastedge.setup-codespace-secret",
"title": "FastEdge (Setup Codespace Secrets)"
},
{
"command": "fastedge.debug-load-wasm",
"title": "FastEdge: Load in Debugger",
"category": "FastEdge"
},
{
"command": "fastedge.debug-load-config",
"title": "FastEdge: Load Config in Debugger",
"category": "FastEdge"
}
],
"menus": {
"explorer/context": [
{
"command": "fastedge.debug-load-wasm",
"when": "resourceExtname == .wasm",
"group": "fastedge@1"
},
{
"command": "fastedge.debug-load-config",
"when": "resourceFilename =~ /test\\.json$/",
"group": "fastedge@2"
}
]
},
"debuggers": [
{
"type": "fastedge",
"label": "FastEdge App Launcher",
"program": "./dist/extension.js",
"languages": [
"rust",
"javascript"
],
"configurationAttributes": {
"launch": {
"properties": {
"entrypoint": {
"type": "string",
"description": "Entrypoint for building the app. \"file\" builds the active editor file; \"package\" builds the package.json main field (JS only).",
"enum": [
"file",
"package"
],
"default": "file"
}
}
}
},
"initialConfigurations": [
{
"type": "fastedge",
"request": "launch",
"name": "FastEdge App"
}
],
"configurationSnippets": [
{
"label": "FastEdge App Runner: Launch",
"description": "Execute FastEdge app locally.",
"body": {
"name": "FastEdge App",
"type": "fastedge",
"request": "launch"
}
}
]
}
]
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/vscode": "^1.106.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vscode/vsce": "^3.7.0",
"esbuild": "^0.27.0",
"eslint": "^9.39.4",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vitest": "^4.1.4"
},
"dependencies": {
"jsonc-parser": "^3.3.1",
"toml": "^3.0.0",
"tree-kill": "^1.2.2"
}
}