mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-23 03:51:20 +00:00
30 lines
801 B
JSON
30 lines
801 B
JSON
{
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc && ncc build src/index.mjs -o dist",
|
|
"format": "prettier --write . !dist !README.md",
|
|
"lint": "eslint --ignore-path .gitignore .",
|
|
"test": "tsc && jest"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.10",
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-json-files": "^4.1.0",
|
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"packageManager": "yarn@4.0.2"
|
|
}
|