generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"name": "ci-bypass",
"description": "Bypass CI checks for GitHub Actions",
"version": "2.0.1",
"author": "Nyakku Shigure <sigure.qaq@gmail.com>",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.2",
"homepage": "https://github.com/PFCCLab/ci-bypass",
"repository": {
"type": "git",
"url": "git+https://github.com/PFCCLab/ci-bypass.git"
},
"bugs": {
"url": "https://github.com/PFCCLab/ci-bypass/issues"
},
"keywords": [
"actions",
"node",
"setup",
"bypass"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=21"
},
"scripts": {
"bundle": "pnpm run format:write && pnpm run package",
"format:write": "pnpm prettier --write .",
"format:check": "pnpm prettier --check .",
"run-local-action": "pnpm local-action . src/main.ts .env",
"package": "pnpm rolldown -c rolldown.config.ts",
"package:watch": "pnpm run package --watch",
"test": "pnpm vitest"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@github/local-action": "^7.0.0",
"@types/node": "^24.8.1",
"prettier": "^3.5.3",
"rolldown": "1.0.0-rc.5",
"typescript": "^5.8.3",
"vitest": "^4.0.0"
}
}