-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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": "setup-railway-cli",
"version": "1.0.0",
"type": "module",
"license": "Apache-2.0",
"main": "dist/index.mjs",
"packageManager": "bun@1.3.1",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsdown --minify",
"check": "biome check",
"check:fix": "biome check --write",
"check:types": "tsc --noEmit",
"test:act": "act workflow_dispatch -W action-test.yml --container-architecture linux/amd64 -P ubuntu-latest=node:24-bookworm"
},
"devDependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"@biomejs/biome": "^2.4.15",
"@types/node": "^24.5.2",
"tsdown": "^0.21.7",
"typescript": "^5.2.2"
}
}