eec948797a
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.18.20 to 0.19.0. - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.18.20...v0.19.0) --- updated-dependencies: - dependency-name: esbuild dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
999 B
JSON
43 lines
999 B
JSON
{
|
|
"name": "setup-zig",
|
|
"description": "Use the zig compiler in your Github Action",
|
|
"version": "2.1.1",
|
|
"author": "Renée Kooi <renee@kooi.me>",
|
|
"bugs": {
|
|
"url": "https://github.com/goto-bus-stop/setup-zig/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/cache": "^3.2.1",
|
|
"@actions/core": "^1.2.2",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"semver": "^7.1.3",
|
|
"simple-get": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.19.0",
|
|
"standard": "^17.0.0"
|
|
},
|
|
"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=node16",
|
|
"test": "standard && node test"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist/**/*.js"
|
|
]
|
|
}
|
|
}
|