-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
69 lines (69 loc) · 2.29 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
{
"name": "@vscode/test-web",
"version": "0.0.64",
"scripts": {
"install-extensions": "npm i --prefix=fs-provider && npm i --prefix=sample",
"compile": "tsc -b ./ && npm run compile-fs-provider",
"watch": "tsc -b -w ./",
"prepack": "npm run compile",
"test": "eslint src && tsc --noEmit",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"compile-fs-provider": "npm run --prefix=fs-provider compile-web",
"compile-sample": "npm run --prefix=sample compile-web",
"sample": "npm run compile && npm run compile-sample && node . --extensionDevelopmentPath=sample sample/test-workspace",
"sample-tests": "npm run compile && npm run compile-sample && node . --extensionDevelopmentPath=sample --extensionTestsPath=sample/dist/web/test/suite/index.js --headless=true sample/test-workspace",
"empty": "npm run compile && node ."
},
"main": "./out/server/index.js",
"bin": {
"vscode-test-web": "./out/server/index.js"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^13.1.0",
"@playwright/browser-chromium": "^1.48.2",
"glob": "^11.0.0",
"gunzip-maybe": "^1.4.2",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"koa": "^2.15.3",
"koa-morgan": "^1.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"minimist": "^1.2.8",
"playwright": "^1.48.2",
"tar-fs": "^3.0.6",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/gunzip-maybe": "^1.4.2",
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/koa-morgan": "^1.0.8",
"@types/koa-mount": "^4.0.5",
"@types/koa-static": "^4.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20.16.13",
"@types/tar-fs": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.15.0",
"@tony.ganchev/eslint-plugin-header": "^3.1.2",
"typescript": "^5.6.3"
},
"license": "MIT",
"author": "Visual Studio Code Team",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-test-web.git"
},
"bugs": {
"url": "https://github.com/microsoft/vscode-test-web/issues"
}
}