forked from stateful/vscode-server-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "vscode-server-action",
"version": "1.0.0",
"description": "A GitHub Action that allows to debug GitHub workflows using VS Code",
"main": "main.ts",
"scripts": {
"build": "tsc && ncc build ./src/main.ts -o dist",
"prepare": "husky install",
"start": "yarn run build && node ./dist/index.js",
"test": "run-s test:*",
"test:lint": "eslint . --ext .ts",
"test:unit": "vitest",
"local": "yarn run build && act --job regression --env-file ./.env --eventpath .github/workflows/regression/payload.json --secret-file my.secrets"
},
"keywords": [
"github",
"action",
"vscode",
"debug",
"ci"
],
"author": "Christian Bromann <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/action": "^4.0.10",
"@vercel/ncc": "^0.34.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/json-schema": "^7.0.11",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitest/coverage-c8": "^0.25.3",
"c8": "^7.12.0",
"eslint": "^8.26.0",
"eslint-plugin-jest": "^27.1.6",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vitest": "^0.23.4"
},
"engines": {
"node": "16"
}
}