Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/automation/package.json
3520 views
1
{
2
"name": "vscode-automation",
3
"version": "1.71.0",
4
"description": "VS Code UI automation driver",
5
"author": {
6
"name": "Microsoft Corporation"
7
},
8
"license": "MIT",
9
"main": "./out/index.js",
10
"private": true,
11
"scripts": {
12
"compile": "npm run copy-driver-definition && node ../../node_modules/typescript/bin/tsc",
13
"watch": "npm-run-all -lp watch-driver-definition watch-tsc",
14
"watch-tsc": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
15
"copy-driver-definition": "node tools/copy-driver-definition.js",
16
"watch-driver-definition": "nodemon --watch ../../src/vs/workbench/services/driver/common/driver.ts tools/copy-driver-definition.js",
17
"copy-package-version": "node tools/copy-package-version.js",
18
"prepublishOnly": "npm run copy-package-version"
19
},
20
"dependencies": {
21
"ncp": "^2.0.0",
22
"tmp": "0.2.4",
23
"tree-kill": "1.2.2",
24
"vscode-uri": "3.0.2"
25
},
26
"devDependencies": {
27
"@types/ncp": "2.0.1",
28
"@types/node": "22.x",
29
"@types/tmp": "0.2.2",
30
"cpx2": "3.0.0",
31
"nodemon": "^3.1.9",
32
"npm-run-all": "^4.1.5"
33
}
34
}
35
36