-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
52 lines (52 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
{
"name": "publish-to-open-vsx",
"version": "0.0.0",
"description": "CI for publishing VS Code extensions to open-vsx.org",
"homepage": "https://open-vsx.org",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/open-vsx/publish-extensions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/open-vsx/publish-extensions"
},
"contributors": [
{
"name": "TypeFox",
"url": "https://www.typefox.io"
},
{
"name": "Gitpod",
"url": "https://www.gitpod.io"
}
],
"bin": "bin/publish-extensions",
"main": "publish-extensions",
"scripts": {
"publish": "node publish-extensions",
"format": "prettier --write ."
},
"dependencies": {
"@vscode/vsce": "^3.0.0",
"ajv": "^8.8.1",
"chai": "^5.1.0",
"deep-equal-in-any-order": "^2.0.6",
"download": "^8.0.0",
"fast-glob": "^3.2.12",
"find-up": "^5.0.0",
"human-number": "^2.0.0",
"jest-diff": "^29.7.0",
"minimist": "^1.2.5",
"octokit": "^3.1.2",
"ovsx": "latest",
"prettier": "^3.2.5",
"semver": "^7.1.3"
},
"devDependencies": {
"@types/human-number": "^1.0.0",
"@types/node": "^22.2.0",
"@types/unzipper": "^0.10.5",
"bun-types": "^1.0.1"
}
}