mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-14 17:54:53 +01:00
* Adapt TypeScript 7 * Ensure that we always call TS7 from spawnTsgo * Fix package lock file * tsc - tsc6 * More tsc -> tsc6 * More TSGO conversion * More moves from tsgo -> tsc * Fix tsgo resolving in extension folder * Call TS7 compiler directly * Update package-lock.json * Remove tsc:version again
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "vscode-automation",
|
|
"version": "1.71.0",
|
|
"description": "VS Code UI automation driver",
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"license": "MIT",
|
|
"main": "./out/index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"compile": "npm run copy-driver-definition && node ../../node_modules/typescript/bin/tsc6",
|
|
"watch": "npm-run-all2 -lp watch-driver-definition watch-tsc",
|
|
"watch-tsc": "node ../../node_modules/typescript/bin/tsc6 --watch --preserveWatchOutput",
|
|
"copy-driver-definition": "node tools/copy-driver-definition.js",
|
|
"watch-driver-definition": "nodemon --watch ../../src/vs/workbench/services/driver/common/driver.ts tools/copy-driver-definition.js",
|
|
"copy-package-version": "node tools/copy-package-version.js",
|
|
"prepublishOnly": "npm run copy-package-version"
|
|
},
|
|
"dependencies": {
|
|
"axe-core": "^4.10.2",
|
|
"ncp": "^2.0.0",
|
|
"tmp": "0.2.7",
|
|
"tree-kill": "1.2.2",
|
|
"vscode-uri": "3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ncp": "2.0.1",
|
|
"@types/node": "24.x",
|
|
"@types/tmp": "0.2.2",
|
|
"cpx2": "3.0.0",
|
|
"nodemon": "^3.1.9",
|
|
"npm-run-all2": "^8.0.4"
|
|
},
|
|
"allowScripts": {
|
|
"fsevents@2.3.3": true
|
|
}
|
|
}
|