generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
{
"name": "typescript-action",
"description": "GitHub Actions TypeScript template",
"version": "1.0.0",
"author": "[email protected]",
"private": true,
"homepage": "https://github.com/safedep/vet-action",
"repository": {
"type": "git",
"url": "git+https://github.com/safedep/vet-action.git"
},
"bugs": {
"url": "https://github.com/safedep/vet-action/issues"
},
"keywords": [
"actions",
"node",
"setup"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "husky install",
"bundle": "npm run format:write && npm run package && cp ./data/policy.yml ./dist/policy.yml",
"ci-test": "vitest run",
"coverage": "vitest run --coverage",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "ncc build src/index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "vitest",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
},
"license": "MIT",
"dependencies": {
"@actions/artifact": "^2.2.1",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"@buf/safedep_api.bufbuild_es": "^2.2.3-20250212070940-a267494d7b0b.1",
"@bufbuild/protobuf": "^2.2.3",
"@connectrpc/connect": "^2.0.1",
"@connectrpc/connect-node": "^2.0.1",
"axios": "^1.6.3"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsonc": "^2.11.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.1.1",
"prettier-eslint": "^16.1.2",
"typescript": "^5.3.3",
"vitest": "^1.6.1"
}
}