Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/sanity/package.json
5241 views
1
{
2
"name": "code-oss-dev-sanity-test",
3
"version": "0.1.0",
4
"license": "MIT",
5
"type": "module",
6
"main": "./out/index.js",
7
"scripts": {
8
"compile": "tsc",
9
"start": "node ./out/index.js"
10
},
11
"dependencies": {
12
"minimist": "^1.2.8",
13
"mocha": "^11.7.5",
14
"mocha-junit-reporter": "^2.2.1",
15
"node-fetch": "^3.3.2",
16
"playwright": "^1.57.0"
17
},
18
"devDependencies": {
19
"@types/minimist": "^1.2.5",
20
"@types/mocha": "^10.0.10",
21
"@types/node": "22.x",
22
"typescript": "^6.0.0-dev.20251110"
23
}
24
}
25
26