-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "wasm-wasi-core",
"private": "true",
"publisher": "ms-vscode",
"version": "0.13.3",
"displayName": "Experimental - WebAssembly Execution Engine",
"description": "Experimental support to execute WebAssemblies on top of the VS Code API.",
"author": "MS",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-wasm.git"
},
"bugs": {
"url": "https://github.com/microsoft/vscode-wasm/issues"
},
"homepage": "https://github.com/microsoft/vscode-wasm/blob/main/wasm-wasi-core/README.md",
"keywords": [
"vscode",
"webassembly",
"wasm",
"wasi"
],
"engines": {
"vscode": "^1.78.0"
},
"main": "./dist/desktop/extension.js",
"browser": "./dist/web/extension.js",
"activationEvents": [],
"dependencies": {
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/vscode": "1.78.0",
"@types/uuid": "^9.0.7",
"@types/assert": "^1.5.9",
"assert": "^2.1.0",
"find-process": "^1.4.7"
},
"scripts": {
"vscode:prepublish": "git clean -xfd . && npm install && npm run compile && npm run lint && npm run update:version && npm run esbuild",
"build": "npm run compile",
"compile": "node ../node_modules/typescript/lib/tsc.js -b tsconfig.json",
"watch": "node ../node_modules/typescript/lib/tsc.js -b tsconfig.json -w",
"clean": "node ../node_modules/rimraf/bin.js lib && node ../node_modules/rimraf/bin.js dist",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
"esbuild": "node ./bin/esbuild.js",
"esbuild:watch": "node ./bin/esbuild.js --watch",
"test": "npm run test:desktop && npm run test:web",
"test:desktop": "node ./lib/desktop/test/runTests.js",
"test:web": "npm run esbuild && node ./lib/web/test/runTests.js",
"update:version": "node ./bin/updateVersion.mjs"
}
}