setup-zig/package.json

43 lines
999 B
JSON
Raw Permalink Normal View History

2019-10-05 10:44:40 +00:00
{
"name": "setup-zig",
"description": "Use the zig compiler in your Github Action",
2023-12-30 11:36:33 +00:00
"version": "2.2.0",
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": {
"@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",
"simple-get": "^4.0.0"
2019-10-09 10:34:19 +00:00
},
2019-10-05 10:44:40 +00:00
"devDependencies": {
"esbuild": "^0.20.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": {
"prepare": "esbuild index.js --outdir=dist --keep-names --bundle --platform=node --target=node20",
"test": "standard && node test"
2019-10-05 10:44:40 +00:00
},
"standard": {
"ignore": [
"dist/**/*.js"
]
2019-10-05 10:44:40 +00:00
}
}