-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 793 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 793 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-packer",
"version": "3.0.1",
"private": true,
"license": "ISC",
"author": "Sora Morimoto <sora@morimoto.io>",
"scripts": {
"build": "esbuild --bundle --format=cjs --outfile=dist/index.js --platform=node --target=node24 src/index.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"type-check": "tsc"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.0",
"@actions/io": "3.0.2",
"@actions/tool-cache": "4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/node": "25.6.0",
"esbuild": "0.28.0",
"typescript": "5.9.3"
}
}