-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 900 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
{
"name": "github-action-read-file",
"version": "2.0.0",
"description": "Read file contents in github. You can also get the file content in the branch",
"homepage": "https://github.com/jaywcjlove/github-action-read-file#readme",
"main": "dist/index.js",
"scripts": {
"prepare": "husky",
"start": "npm run watch",
"build": "ncc build src/index.ts -o dist",
"watch": "ncc watch src/index.ts -o dist"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/github-action-read-file.git"
},
"keywords": [],
"author": "jaywcjlove",
"license": "MIT",
"engines": {
"node": ">=v20.11.0",
"npm": ">=10.2.4"
},
"dependencies": {
"@actions/core": "~1.10.0",
"@actions/github": "~6.0.0",
"fs-extra": "~11.2.0"
},
"devDependencies": {
"@kkt/ncc": "~1.1.0",
"husky": "~9.0.11",
"lint-staged": "~15.2.2"
}
}