-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 963 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
{
"name": "github-action-folder-tree",
"version": "1.2.0",
"description": "View the folder directory tree structure, similar to the output of the tree command",
"homepage": "https://github.com/jaywcjlove/github-action-folder-tree#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-folder-tree.git"
},
"keywords": [
"actions",
"folder",
"tree",
"github"
],
"author": "jaywcjlove",
"license": "MIT",
"engines": {
"node": ">=v20.11.0",
"npm": ">=10.2.4"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"dree": "^5.1.2"
},
"devDependencies": {
"@kkt/ncc": "^1.1.2",
"husky": "^9.1.3",
"lint-staged": "^15.2.7"
}
}