-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "@vscode/vscode-bisect",
"version": "0.5.6",
"description": "Bisect released VS Code Insider builds to find bugs or performance issues similar to what git bisect supports.",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-bisect"
},
"homepage": "https://github.com/microsoft/vscode-bisect",
"keywords": [
"vscode"
],
"bin": {
"vscode-bisect": "bin/vscode-bisect"
},
"license": "MIT",
"authors": "microsoft",
"main": "out/index",
"scripts": {
"compile": "tsc -p ./",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prepare": "npm run build"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"@vscode/vscode-perf": "^0.0.19",
"chalk": "^4.x",
"commander": "^9.4.0",
"fflate": "^0.8.2",
"follow-redirects": "^1.15.6",
"open": "^8.4.0",
"progress": "^2.0.3",
"prompts": "^2.4.2",
"simple-git": "^3.16.0",
"tree-kill": "^1.2.2",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/follow-redirects": "^1.x",
"@types/node": "20.x",
"@types/progress": "^2.0.7",
"@types/prompts": "^2.x",
"typescript": "5.x"
}
}