49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "github-action-setup-xmake",
|
|
"version": "1.2.0",
|
|
"description": "Set up your GitHub Actions workflow with a specific version of xmake",
|
|
"main": "dist/index.js",
|
|
"author": "OpportunityLiu",
|
|
"license": "GPL-3.0-or-later",
|
|
"repository": "https://github.com/xmake-io/github-action-setup-xmake.git",
|
|
"homepage": "https://github.com/xmake-io/github-action-setup-xmake",
|
|
"scripts": {
|
|
"watch": "tsc --watch",
|
|
"build": "ncc build src/index.ts",
|
|
"rebuild": "pnpm clean && pnpm build",
|
|
"clean": "rimraf dist",
|
|
"lint": "eslint --fix src/**/*.ts",
|
|
"format": "prettier --write .",
|
|
"test": "jest",
|
|
"release": "pnpm clean && pnpm format && pnpm lint && pnpm build"
|
|
},
|
|
"dependencies": {
|
|
"@actions/cache": "^3.2.4",
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"semver": "^7.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.11.19",
|
|
"@types/semver": "^7.5.7",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
"@typescript-eslint/parser": "^7.0.1",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.2.5",
|
|
"rimraf": "^5.0.5",
|
|
"ts-jest": "^29.1.2",
|
|
"type-fest": "^4.10.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"contributors": [
|
|
"Yu Zhu"
|
|
]
|
|
}
|