-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
111 lines (111 loc) · 3.33 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
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
{
"name": "container-wasm",
"displayName": "container-wasm",
"publisher": "ktock",
"description": "Run Container On VSCode for the Web",
"author": "ktock",
"version": "0.0.3",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/ktock/vscode-container-wasm.git"
},
"bugs": {
"url": "https://github.com/ktock/vscode-container-wasm/issues"
},
"browser": "./dist/web/extension.js",
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "container-wasm.run",
"title": "Run Container On Browser"
}
],
"configuration": {
"title": "Container",
"properties": {
"container.imageLocation": {
"type": "string",
"default": "",
"description": "Specifies the URI of the Wasm-formatted container image."
},
"container.imageChunks": {
"type": "number",
"default": 0,
"description": "Specify non zero value if the image is chunked with suffix (< 99)"
},
"container.imageWithDecompression": {
"type": "bool",
"default": false,
"description": "Set true if the image needs decompression"
},
"container.workspaceMountpoint": {
"type": "string",
"default": "/workspace",
"description": "Specify path to mount the workspace in container (set \"\" to disable mount)"
},
"container.networkingMode": {
"type": "string",
"default": "fetch",
"enum": [
"none",
"fetch"
],
"description": "Networking mode"
},
"container.containerImage": {
"type": "string",
"default": "",
"description": "Address of container image"
},
"container.helperImageLocation": {
"type": "string",
"default": "",
"description": "Specifies the URI of the Wasm-formatted networking helper image."
},
"container.helperImageWithDecompression": {
"type": "bool",
"default": false,
"description": "Set true if the helper image needs decompression"
}
}
}
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"@bjorn3/browser_wasi_shim": "^0.2.17",
"@types/mocha": "^10.0.2",
"@types/uuid": "^9.0.1",
"@types/vscode": "^1.83.0",
"@types/webpack-env": "^1.18.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-web": "^0.0.46",
"assert": "^2.1.0",
"eslint": "^8.50.0",
"mocha": "^10.2.0",
"process": "^0.11.10",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}