forked from microsoft/vscode-vsce
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"name": "@codeeditorland/vsce",
"description": "VS Code Extensions Manager",
"contributors": [
"Microsoft Corporation"
],
"main": "out/api.js",
"typings": "dist/vsce.d.ts",
"bin": {
"vsce": "vsce"
},
"scripts": {
"api": "api-extractor run --local --verbose",
"build": "npm run compile && npm run api",
"compile": "tsc",
"watch:build": "npm run compile -- --watch",
"watch:test": "npm run test -- --watch"
},
"mocha": {
"require": [
"ts-node/register"
],
"spec": "src/test/**/*.ts",
"watch-files": "src/**"
},
"dependencies": {
"@codeeditorland/vsce-sign": "0.0.1",
"chalk": "5.4.1",
"cheerio": "1.0.0",
"cockatiel": "3.2.1",
"commander": "13.1.0",
"form-data": "4.0.1",
"glob": "11.0.1",
"hosted-git-info": "8.0.2",
"jsonc-parser": "3.3.1",
"leven": "4.0.0",
"markdown-it": "14.1.0",
"mime": "4.0.6",
"minimatch": "10.0.1",
"parse-semver": "1.1.1",
"read": "4.1.0",
"semver": "7.7.0",
"tmp": "0.2.3",
"typed-rest-client": "2.1.0",
"url-join": "5.0.0",
"xml2js": "0.6.2",
"yauzl": "3.2.0",
"yazl": "3.3.1"
},
"devDependencies": {
"@types/cheerio": "0.22.35",
"@types/glob": "8.1.0",
"@types/hosted-git-info": "3.0.5",
"@types/markdown-it": "14.1.2",
"@types/mime": "4",
"@types/minimatch": "5.1.2",
"@types/node": "22.13.0",
"@types/read": "0.0.32",
"@types/semver": "7.5.8",
"@types/tmp": "0.2.6",
"@types/url-join": "4.0.3",
"@types/xml2js": "0.4.14",
"@types/yauzl": "2.10.3",
"@types/yazl": "2.4.5",
"source-map-support": "0.5.21"
},
"optionalDependencies": {
"keytar": "7.9.0"
}
}