-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "@opensumi/extension-installer",
"version": "0.0.1",
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"repository": "[email protected]:opensumi/extension-installer.git",
"license": "MIT",
"scripts": {
"build": "tsc",
"fmt": "dprint fmt",
"lint": "eslint",
"test": "vitest",
"coverage": "vitest run --coverage",
"release": "commit-and-tag-version",
"prepublishOnly": "npm run build"
},
"dependencies": {
"content-disposition": "^0.5.4",
"debug": "^4.3.5",
"urllib": "^3.25.1",
"yauzl": "^3.1.3"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/content-disposition": "^0.5.8",
"@types/debug": "^4.1.12",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.8",
"@types/yauzl": "^2.10.3",
"commit-and-tag-version": "^12.4.1",
"dprint": "^0.46.3",
"eslint": "9.x",
"lefthook": "^1.6.18",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}