-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.82 KB
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
{
"name": "publish-vscode-extension",
"version": "2.0.0",
"description": "GitHub action to publish your VS Code Extension to the Open VSX Registry.",
"main": "dist/index.js",
"scripts": {
"test": "nyc mocha \"out/test/**/*.test.js\"",
"coverage": "nyc report --reporter=lcov",
"build": "npm run build:ncc && npm run build:test",
"build:ncc": "ncc build src/index.ts --source-map --no-source-map-register",
"build:test": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HaaLeo/publish-vscode-extension.git"
},
"keywords": [
"github",
"action",
"open",
"vsx",
"vscode",
"publish",
"Visual Studio Code"
],
"author": {
"name": "HaaLeo",
"url": "https://github.com/HaaLeo"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/HaaLeo/publish-vscode-extension/issues"
},
"homepage": "https://github.com/HaaLeo/publish-vscode-extension#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@vscode/vsce": "^3.2.2",
"ovsx": "^0.10.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@stylistic/eslint-plugin-ts": "^4.0.1",
"@types/chai": "^4.0.0",
"@types/chai-as-promised": "^7.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.0",
"@types/sinon-chai": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.3",
"chai": "^4.0.0",
"chai-as-promised": "^7.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^11.0.0",
"nyc": "^17.0.0",
"sinon": "^19.0.0",
"sinon-chai": "^3.0.0",
"typescript": "^5.0.3"
}
}