-
Notifications
You must be signed in to change notification settings - Fork 287
/
package.json
163 lines (163 loc) · 4.72 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "js-debug",
"displayName": "JavaScript Debugger",
"version": "1.96.0",
"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.1",
"@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",
"npm-run-all2": "^7.0.1",
"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.1",
"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",
"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"
]
}