Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/automation/package.json
5229 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-all2 -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
"axe-core": "^4.10.2",
22
"ncp": "^2.0.0",
23
"tmp": "0.2.4",
24
"tree-kill": "1.2.2",
25
"vscode-uri": "3.0.2"
26
},
27
"devDependencies": {
28
"@types/ncp": "2.0.1",
29
"@types/node": "22.x",
30
"@types/tmp": "0.2.2",
31
"cpx2": "3.0.0",
32
"nodemon": "^3.1.9",
33
"npm-run-all2": "^8.0.4"
34
}
35
}
36
37