cmake-action/package.json
2024-03-04 21:27:19 +08:00

25 lines
621 B
JSON

{
"private": true,
"type": "module",
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier --write --cache . !dist !README.md",
"lint": "eslint --ignore-path .gitignore ."
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.1.0"
}