Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/sanity/package.json
4770 views
1
{
2
"name": "code-oss-dev-sanity-test",
3
"version": "0.1.0",
4
"license": "MIT",
5
"main": "./out/index.js",
6
"scripts": {
7
"postinstall": "playwright install --with-deps chromium webkit",
8
"compile": "node ../../node_modules/typescript/bin/tsc",
9
"start": "node ./out/index.js"
10
},
11
"dependencies": {
12
"node-fetch": "^3.3.2",
13
"playwright": "^1.57.0"
14
},
15
"devDependencies": {
16
"@types/node": "22.x"
17
}
18
}
19
20