-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "@vscode/test-electron",
"version": "2.4.1",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"prepack": "tsc -p ./",
"fmt": "prettier --write \"lib/**/*.{ts,mts}\" \"*.md\"",
"test": "eslint \"lib/**/*.{ts,mts}\" && vitest && tsc --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"main": "./out/index.js",
"engines": {
"node": ">=16"
},
"dependencies": {
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"jszip": "^3.10.1",
"ora": "^7.0.1",
"semver": "^7.6.2"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/node": "^20",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.5.8",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vitest": "^1.6.0"
},
"license": "MIT",
"author": "Visual Studio Code Team",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-test.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-test/issues"
}
}