-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
{
"name": "github-downloader",
"description": "This action downloads the file from provided Github repository.",
"version": "1.0.0",
"author": "Acme Software LLC",
"type": "module",
"private": true,
"scripts": {
"bundle": "npm run format && npm run package",
"format": "npx @biomejs/biome check --write",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package:watch": "npm run package -- --watch",
"local-action": "npx @github/local-action . src/main.ts .env",
"lint": "npx @biomejs/biome lint"
},
"keywords": [
"github",
"actions",
"downloader",
"files"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24.0.0"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@actions/io": "^2.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@github/local-action": "^6.0.2",
"@types/node": "^24.10.2",
"rollup": "^4.53.3",
"typescript": "^5.9.3"
}
}