generated from dsanders11/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 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
{
"name": "github-app-commit-action",
"description": "GitHub Action which makes it simple to make verified Git commits as a GitHub app",
"version": "0.0.0-development",
"author": "David Sanders <dsanders11@ucsbalum.com>",
"private": true,
"homepage": "https://github.com/dsanders11/github-app-commit-action",
"repository": {
"type": "git",
"url": "git+https://github.com/dsanders11/github-app-commit-action.git"
},
"bugs": {
"url": "https://github.com/dsanders11/github-app-commit-action/issues"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "vitest run --coverage --reporter=verbose",
"format:write": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --type-aware",
"package": "rolldown src/index.ts --minify --file dist/index.js --platform node",
"package:watch": "npm run package -- --watch",
"test": "vitest run --coverage --reporter=verbose",
"all": "npm run format:write && npm run lint && npm run test && npm run package",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/request-error": "^7.1.0"
},
"devDependencies": {
"@octokit/types": "^12.6.0",
"@types/node": "^20.14.14",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"oxfmt": "^0.38.0",
"oxlint": "^1.53.0",
"oxlint-tsgolint": "^0.16.0",
"rolldown": "^1.0.0-rc.9",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}