forked from krdlab/setup-haxe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 942 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
33
34
35
36
37
38
39
40
{
"name": "setup-haxe",
"version": "1.5.1",
"description": "setup haxe action",
"author": "Sho Kuroda <krdlab@gmail.com>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16",
"npm": ">=9"
},
"main": "lib/main.js",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"pack": "ncc build && ncc build -o dist/cache-save src/cache-save.ts",
"test": "echo \"No tests configured\"",
"format": "echo \"No formatter configured\"",
"dist": "npm run build && npm run pack"
},
"keywords": [
"actions",
"haxe",
"setup"
],
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.5.0",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.7.2"
}
}