-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 929 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
{
"name": "gitea-publish-generic-packages",
"version": "1.0.0",
"description": "An action to support publishing generic packages to Gitea.",
"author": "Allen.Cai",
"license": "MIT",
"repository": "https://github.com/VAllens/gitea-publish-generic-packages",
"homepage": "https://github.com/VAllens/gitea-publish-generic-packages",
"bugs": "https://github.com/VAllens/gitea-publish-generic-packages/issues",
"keywords": [
"gitea-actions",
"actions",
"generic-packages"
],
"type": "module",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "ncc build main.js -o dist",
"build": "ncc build main.js",
"start": "node main.js"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"gitea-api": "^1.17.3-1",
"glob": "^10.3.10"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}