mirror of
https://github.com/moonrepo/setup-rust.git
synced 2025-04-20 01:28:43 +00:00
33 lines
869 B
JSON
33 lines
869 B
JSON
{
|
|
"name": "@moonrepo/setup-rust",
|
|
"version": "0.1.1",
|
|
"description": "A GitHub action for setting up Rust and Cargo.",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build ./index.ts",
|
|
"check": "npm run lint && npm run typecheck",
|
|
"lint": "eslint --ext .ts,.js --fix .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/moonrepo/setup-rust"
|
|
},
|
|
"author": "Miles Johnson",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@ltd/j-toml": "^1.38.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.10",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-moon": "^2.0.2",
|
|
"prettier": "^2.8.7",
|
|
"prettier-config-moon": "^1.1.2",
|
|
"tsconfig-moon": "^1.3.0",
|
|
"typescript": "^5.0.2"
|
|
}
|
|
}
|