-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "setup-custom-action-by-ts",
"version": "0.2.1",
"description": "A custom GitHub Action using TypeScript",
"author": "Mystic",
"repository": {
"type": "git",
"url": "git+https://github.com/pplmx/setup-custom-action-by-ts"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && ncc build lib/index.js",
"test": "jest",
"lint": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"prepare": "husky",
"commit": "pnpx git-cz"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"axios": "^1.7.7",
"toml": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@vercel/ncc": "^0.38.2",
"husky": "^9.1.6",
"inquirer": "^12.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"lint-staged": {
"*": ["biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}