mirror of
https://github.com/Borales/actions-yarn.git
synced 2026-03-03 14:52:16 +08:00
31 lines
846 B
JSON
31 lines
846 B
JSON
{
|
|
"name": "@borales/actions-yarn",
|
|
"version": "4.2.0",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.17.30",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-jest": "^27.9.0",
|
|
"eslint": "^8.57.1",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.5.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|