164 строки
4.7 KiB
JSON
164 строки
4.7 KiB
JSON
{
|
|
"name": "js-debug",
|
|
"displayName": "JavaScript Debugger",
|
|
"version": "1.95.3",
|
|
"publisher": "ms-vscode",
|
|
"author": {
|
|
"name": "Microsoft Corporation"
|
|
},
|
|
"keywords": [
|
|
"pwa",
|
|
"javascript",
|
|
"node",
|
|
"chrome",
|
|
"debugger"
|
|
],
|
|
"description": "An extension for debugging Node.js programs and Chrome.",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.80.0",
|
|
"node": ">=10"
|
|
},
|
|
"icon": "resources/logo.png",
|
|
"categories": [
|
|
"Debuggers"
|
|
],
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-pwa.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-pwa/issues"
|
|
},
|
|
"scripts": {
|
|
"compile": "gulp",
|
|
"watch": "gulp watch",
|
|
"fmt": "dprint fmt",
|
|
"prepare": "husky install",
|
|
"package": "gulp package",
|
|
"publish": "gulp publish",
|
|
"postinstall": "playwright install chromium",
|
|
"precommit": "npm-run-all --parallel test:lint test:types",
|
|
"updatetypes": "cd src/typings && npx -y @vscode/dts dev && npx -y @vscode/dts master",
|
|
"updatenodeapi": "python src/build/getNodePdl.py && dprint fmt",
|
|
"generateapis": "tsx src/build/generateDap.ts && tsx src/build/generateCdp.ts && dprint fmt",
|
|
"test": "gulp && npm-run-all --parallel test:unit test:types test:golden test:lint",
|
|
"test:types": "tsc --noEmit",
|
|
"test:unit": "tsx node_modules/mocha/bin/mocha.js --config .mocharc.unit.js",
|
|
"test:golden": "node ./src/test/runTest.js",
|
|
"test:lint": "gulp lint"
|
|
},
|
|
"dependencies": {
|
|
"@c4312/chromehash": "^0.3.0",
|
|
"@jridgewell/gen-mapping": "^0.3.3",
|
|
"@jridgewell/trace-mapping": "^0.3.22",
|
|
"@vscode/js-debug-browsers": "^1.1.2",
|
|
"@vscode/l10n": "^0.0.18",
|
|
"@vscode/win32-app-container-tokens": "^0.1.0",
|
|
"acorn": "^8.11.3",
|
|
"acorn-loose": "^8.4.0",
|
|
"astring": "^1.8.6",
|
|
"color": "^4.2.3",
|
|
"data-uri-to-buffer": "^6.0.1",
|
|
"default-browser": "^5.2.1",
|
|
"dotenv": "^16.4.1",
|
|
"eslint-visitor-keys": "^3.4.3",
|
|
"execa": "^5.1.1",
|
|
"glob-stream": "^8.0.0",
|
|
"got": "^11.8.6",
|
|
"inversify": "^6.0.2",
|
|
"js-xxhash": "^3.0.1",
|
|
"jsonc-parser": "^3.3.1",
|
|
"linkifyjs": "^4.1.3",
|
|
"micromatch": "^4.0.5",
|
|
"path-browserify": "^1.0.1",
|
|
"picomatch": "connor4312/picomatch#2fbe90b12eafa7dde816ff8c16be9e77271b0e0b",
|
|
"preact": "^10.19.3",
|
|
"reflect-metadata": "^0.2.1",
|
|
"signale": "^1.4.0",
|
|
"source-map-support": "^0.5.21",
|
|
"to-absolute-glob": "^3.0.0",
|
|
"vscode-tas-client": "^0.1.84",
|
|
"ws": "^8.17.1"
|
|
},
|
|
"devDependencies": {
|
|
"@c4312/matcha": "^1.3.1",
|
|
"@pptr/testrunner": "^0.8.0",
|
|
"@types/chai": "^4.3.11",
|
|
"@types/chai-as-promised": "^7.1.8",
|
|
"@types/chai-string": "^1.4.5",
|
|
"@types/chai-subset": "^1.3.5",
|
|
"@types/color": "^3.0.6",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/diff": "^5.0.9",
|
|
"@types/estree": "1.0.5",
|
|
"@types/express": "^4.17.21",
|
|
"@types/glob-stream": "^8.0.2",
|
|
"@types/gulp": "^4.0.17",
|
|
"@types/js-beautify": "^1.14.3",
|
|
"@types/json-schema": "^7.0.15",
|
|
"@types/linkifyjs": "^2.1.7",
|
|
"@types/long": "^4.0.2",
|
|
"@types/marked": "^5.0.2",
|
|
"@types/micromatch": "^4.0.6",
|
|
"@types/minimist": "^1.2.5",
|
|
"@types/mkdirp": "^1.0.2",
|
|
"@types/mocha": "^10.0.6",
|
|
"@types/node": "^20.11.11",
|
|
"@types/signale": "^1.4.7",
|
|
"@types/sinon": "^17.0.3",
|
|
"@types/stream-buffers": "^3.0.7",
|
|
"@types/tmp": "^0.2.6",
|
|
"@types/to-absolute-glob": "^2.0.3",
|
|
"@types/ws": "^8.5.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
"@typescript-eslint/parser": "^6.20.0",
|
|
"@vscode/dwarf-debugging": "^0.0.2",
|
|
"@vscode/test-electron": "^2.4.1",
|
|
"chai": "^4.3.6",
|
|
"chai-as-promised": "^7.1.1",
|
|
"chai-string": "^1.5.0",
|
|
"chai-subset": "^1.6.0",
|
|
"diff": "^5.1.0",
|
|
"dprint": "^0.47.2",
|
|
"esbuild": "^0.23.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"eslint-plugin-react": "^7.33.2",
|
|
"express": "^4.21.0",
|
|
"glob": "^10.3.10",
|
|
"gulp": "^4.0.2",
|
|
"gulp-cli": "^2.3.0",
|
|
"gulp-rename": "^2.0.0",
|
|
"gulp-util": "^3.0.8",
|
|
"https-proxy-agent": "^7.0.4",
|
|
"husky": "^9.0.7",
|
|
"jszip": "^3.10.1",
|
|
"marked": "^11.2.0",
|
|
"merge2": "^1.4.1",
|
|
"minimist": "^1.2.8",
|
|
"mocha": "^10.2.0",
|
|
"mocha-junit-reporter": "^2.2.1",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"nyc": "^15.1.0",
|
|
"playwright": "^1.41.1",
|
|
"sinon": "^17.0.1",
|
|
"stream-buffers": "^3.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.5.2",
|
|
"vsce": "^2.7.0"
|
|
},
|
|
"main": "./src/extension.js",
|
|
"enabledApiProposals": [
|
|
"portsAttributes",
|
|
"workspaceTrust",
|
|
"tunnels"
|
|
],
|
|
"extensionKind": [
|
|
"workspace"
|
|
]
|
|
}
|