mirror of
https://gitea.com/actions/setup-android.git
synced 2026-03-26 06:38:21 +00:00
Allows updating @actions/core and @actions/tool-cache. Their old versions had dependencies with security issues.
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "setup-android",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "setup android action",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && esbuild lib/main.js --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.js",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/*.ts",
|
|
"test": "jest",
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/daveol/setup-android.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup",
|
|
"android"
|
|
],
|
|
"author": "daveol",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.0",
|
|
"@actions/tool-cache": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
|
"@typescript-eslint/parser": "^8.57.2",
|
|
"esbuild": "^0.27.4",
|
|
"eslint": "^10.1.0",
|
|
"eslint-plugin-check-file": "^3.3.1",
|
|
"eslint-plugin-jest": "^29.15.1",
|
|
"globals": "^17.4.0",
|
|
"jest": "^30.3.0",
|
|
"jest-circus": "^30.3.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.3.2",
|
|
"ts-jest": "^29.1.5",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|