-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 933 Bytes
/
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "github-action-package",
"version": "2.0.0",
"description": "Read and modify the contents of package.json.",
"scripts": {
"prepare": "husky",
"build": "ncc build src/index.ts -o lib",
"watch": "ncc watch src/index.ts -o lib"
},
"author": "jaywcjlove",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/github-action-package"
},
"lint-staged": {
"*.ts?(x)": [
"npm run build"
]
},
"keywords": [
"actions",
"package",
"package.json",
"json",
"node",
"setup"
],
"engines": {
"node": ">=v20.11.0",
"npm": ">=10.2.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"has-value": "^2.0.2",
"isobject": "^4.0.0"
},
"devDependencies": {
"@kkt/ncc": "~1.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.0"
}
}