forked from microsoft/vscode-js-debug-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "js-debug-companion",
"displayName": "JavaScript Debugger Companion Extension",
"description": "Companion extension to js-debug that provides capability for remote debugging",
"version": "1.0.18",
"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 <[email protected]>",
"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"
}
}