forked from Felx-B/vscode-web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.01 KB
/
package.json
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
{
"name": "vscode-workers",
"version": "1.50.1",
"description": "Visual Studio Code running on Cloudflare Workers",
"files": [
"dist/*"
],
"scripts": {
"build": "node build.js",
"prepare-demo": "node prepare-demo.js",
"demo": "http-server ./demo --cors",
"deploy": "npx wrangler publish"
},
"repository": {
"type": "git",
"url": "https://github.com/glenstack/vscode-workers"
},
"author": {
"name": "Greg Brimble",
"email": "greg@glenstack.com",
"url": "https://glenstack.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/glenstack/vscode-workers/issues"
},
"homepage": "https://vscode.glenstack.workers.dev/",
"devDependencies": {
"@cloudflare/wrangler": "^1.11.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"http-server": "^0.12.3",
"minify": "^6.0.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"semver-umd": "^5.5.7",
"vscode-oniguruma": "^1.4.0",
"vscode-textmate": "^5.2.0"
},
"dependencies": {}
}