setup-rust-action/package.json
Héctor Ramón Jiménez 39c8a29de2
Update dependencies
2022-11-01 18:47:51 +01:00

37 lines
837 B
JSON

{
"name": "setup-rust-action",
"version": "0.0.0",
"private": true,
"description": "Set up a specific Rust toolchain in your Github Actions workflows",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hecrj/setup-rust-action.git"
},
"keywords": [
"github",
"actions",
"rust",
"setup"
],
"author": "Héctor Ramón",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.1.1",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/semver": "^7.3.13",
"@zeit/ncc": "^0.22.3",
"typescript": "^4.8.4"
}
}