-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "github-actions-template",
"type": "module",
"private": true,
"description": "A template for creating GitHub Actions",
"author": {
"name": "hywax",
"email": "me@hywax.space"
},
"license": "MIT",
"homepage": "https://github.com/hywax/github-action-template",
"repository": {
"type": "git",
"url": "git+https://github.com/hywax/github-action-templat.git"
},
"bugs": {
"url": "https://github.com/hywax/github-action-template/issues"
},
"keywords": [
"github",
"actions",
"template"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"build": "tsc && vite build",
"release": "pnpm test && pnpm build && changelogen --release && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@vitest/coverage-v8": "^2.1.5",
"changelogen": "^0.5.7",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.5"
},
"lint-staged": {
"*.ts": "pnpm run lint"
}
}