UNPKG

setup-v-action

Version:

GitHub action for setting up a V (Vlang) build environment by downloading and unpacking the V compiler or building it from sources.

61 lines 1.57 kB
{ "name": "setup-v-action", "version": "4.0.0", "description": "GitHub action for setting up a V (Vlang) build environment by downloading and unpacking the V compiler or building it from sources.", "author": "Ferdinand Prantl <prantlf@gmail.com> (http://prantl.tk)", "license": "MIT", "licenses": [ { "type": "MIT", "url": "https://github.com/prantlf/setup-v-action/blob/master/LICENSE" } ], "homepage": "http://prantlf.github.com/setup-v-action/", "repository": { "type": "git", "url": "https://github.com/prantlf/setup-v-action.git" }, "bugs": { "url": "http://github.com/prantlf/setup-v-action/issues" }, "type": "module", "main": "dist/index.js", "exports": { "require": "./dist/index.js" }, "files": [ "dist", "action.yml" ], "engines": { "node": ">=24" }, "scripts": { "build": "rollup -c", "lint": "biome lint src test/*.js", "check": "node test/index", "test": "biome lint src test/*.js && node test/index" }, "devDependencies": { "@actions/core": "^3.0.1", "@actions/exec": "^3.0.0", "@actions/http-client": "^4.0.1", "@actions/io": "^3.0.2", "@actions/tool-cache": "^4.0.0", "@biomejs/biome": "^2.5.4", "@rollup/plugin-commonjs": "^29.0.3", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.3", "builtins": "^5.1.0", "mersenne-twister": "^1.1.0", "rollup": "^4.62.2" }, "keywords": [ "github-actions", "github", "actions", "setup", "vlang", "v" ] }