mirror of
https://github.com/moonrepo/setup-rust.git
synced 2025-04-20 17:48:43 +00:00
37 lines
1 KiB
JSON
37 lines
1 KiB
JSON
{
|
|
"name": "@moonrepo/setup-rust",
|
|
"version": "0.3.1",
|
|
"description": "A GitHub action for setting up Rust and Cargo.",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build ./index.ts && ncc build ./post.ts --out ./dist/post",
|
|
"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/cache": "^3.2.1",
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/glob": "^0.4.0",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@ltd/j-toml": "^1.38.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.11",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.38.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.4"
|
|
}
|
|
}
|