-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 839 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
{
"name": "release-build-log-action",
"version": "1.0.2",
"description": " An action to append build logs to a given release",
"repository": "https://github.com/Kas-tle/release-build-log-action.git",
"author": "Joshua Castle <packages@kastle.dev",
"license": " AGPL-3.0-only",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"package": "ncc build index.ts --license licenses.txt",
"package:watch": "npm run package -- --watch"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/action": "^6.0.6",
"ansi-to-html": "^0.7.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.7.1",
"@vercel/ncc": "^0.38.0",
"typescript": "^5.2.2"
}
}