generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "ci-bypass",
"description": "Bypass CI checks for GitHub Actions",
"version": "1.0.3",
"author": "Nyakku Shigure <[email protected]>",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"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": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@github/local-action": "^2.2.1",
"@types/node": "^22.10.4",
"prettier": "^3.4.2",
"rolldown": "1.0.0-beta.1",
"rollup-plugin-esbuild": "^6.1.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}