mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
96 lines
2.5 KiB
JSON
96 lines
2.5 KiB
JSON
{
|
|
"name": "js-debug-companion",
|
|
"displayName": "JavaScript Debugger Companion Extension",
|
|
"description": "Companion extension to js-debug that provides capability for remote debugging",
|
|
"version": "1.0.17",
|
|
"publisher": "ms-vscode",
|
|
"engines": {
|
|
"vscode": "^1.65.0"
|
|
},
|
|
"icon": "resources/logo.png",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode-js-debug-companion.git"
|
|
},
|
|
"author": "Connor Peet <connor@peet.io>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/microsoft/vscode-js-debug-companion/issues"
|
|
},
|
|
"homepage": "https://github.com/microsoft/vscode-js-debug-companion#readme",
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:js-debug-companion.launchAndAttach",
|
|
"onCommand:js-debug-companion.kill"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {},
|
|
"extensionKind": [
|
|
"ui"
|
|
],
|
|
"api": "none",
|
|
"scripts": {
|
|
"vscode:prepublish": "rimraf out && webpack",
|
|
"compile": "rimraf out && tsc",
|
|
"watch": "rimraf out && tsc --watch",
|
|
"test": "npm run compile && npm run test:lint && npm run test:fmt",
|
|
"test:lint": "eslint \"src/**/*.ts\"",
|
|
"test:fmt": "prettier --list-different \"src/**/*.ts\"",
|
|
"fmt": "prettier --write \"src/**/*.ts\"&& npm run test:lint -- --fix"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"arrowParens": "avoid"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^7.2.0",
|
|
"@types/mocha": "^9.1.0",
|
|
"@types/node": "^17.0.21",
|
|
"@types/split2": "^3.2.1",
|
|
"@types/vscode": "^1.65.0",
|
|
"@types/ws": "^8.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
"@typescript-eslint/parser": "^5.13.0",
|
|
"eslint": "^8.10.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"glob": "^7.2.0",
|
|
"mocha": "^9.2.1",
|
|
"prettier": "^2.5.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-loader": "^9.2.7",
|
|
"typescript": "^4.6.2",
|
|
"vscode-test": "^1.6.1",
|
|
"webpack": "^5.70.0",
|
|
"webpack-cli": "^4.9.2"
|
|
},
|
|
"dependencies": {
|
|
"execa": "^5.1.1",
|
|
"split2": "^4.1.0",
|
|
"vscode-js-debug-browsers": "^1.0.5",
|
|
"vscode-nls": "^5.0.0",
|
|
"ws": "^8.5.0"
|
|
},
|
|
"__metadata": {
|
|
"id": "99cb0b7f-7354-4278-b8da-6cc79972169d",
|
|
"publisherId": "5f5636e7-69ed-4afe-b5d6-8d231fb3d3ee",
|
|
"publisherDisplayName": "Microsoft",
|
|
"targetPlatform": "undefined",
|
|
"isBuiltin": true,
|
|
"isSystem": true,
|
|
"updated": true,
|
|
"isPreReleaseVersion": false,
|
|
"preRelease": false,
|
|
"installedTimestamp": 1649320100391
|
|
}
|
|
} |