2019-10-05 10:44:40 +00:00
|
|
|
{
|
|
|
|
"name": "setup-zig",
|
|
|
|
"description": "Use the zig compiler in your Github Action",
|
2023-07-08 16:01:38 +00:00
|
|
|
"version": "2.1.1",
|
2019-10-05 10:44:40 +00:00
|
|
|
"author": "Renée Kooi <renee@kooi.me>",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
|
|
|
},
|
2019-10-09 10:34:19 +00:00
|
|
|
"dependencies": {
|
2023-06-25 15:44:29 +00:00
|
|
|
"@actions/cache": "^3.2.1",
|
2020-02-17 14:06:21 +00:00
|
|
|
"@actions/core": "^1.2.2",
|
2022-11-07 12:20:38 +00:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2020-02-17 14:06:21 +00:00
|
|
|
"semver": "^7.1.3",
|
2020-05-18 07:46:18 +00:00
|
|
|
"simple-get": "^4.0.0"
|
2019-10-09 10:34:19 +00:00
|
|
|
},
|
2019-10-05 10:44:40 +00:00
|
|
|
"devDependencies": {
|
2023-08-09 08:58:27 +00:00
|
|
|
"esbuild": "^0.19.0",
|
2022-11-07 12:21:01 +00:00
|
|
|
"standard": "^17.0.0"
|
2019-10-05 10:44:40 +00:00
|
|
|
},
|
|
|
|
"homepage": "https://github.com/goto-bus-stop/setup-zig",
|
|
|
|
"keywords": [
|
|
|
|
"Actions",
|
|
|
|
"Github",
|
|
|
|
"zig",
|
|
|
|
"ziglang"
|
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"main": "index.js",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/goto-bus-stop/setup-zig.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2023-06-25 15:44:29 +00:00
|
|
|
"prepare": "esbuild index.js --outdir=dist --keep-names --bundle --platform=node --target=node16",
|
2020-11-11 11:38:41 +00:00
|
|
|
"test": "standard && node test"
|
2019-10-05 10:44:40 +00:00
|
|
|
},
|
2019-10-07 08:24:19 +00:00
|
|
|
"standard": {
|
|
|
|
"ignore": [
|
|
|
|
"dist/**/*.js"
|
|
|
|
]
|
2019-10-05 10:44:40 +00:00
|
|
|
}
|
|
|
|
}
|