Files
setup-android/package.json
T
dependabot[bot] 5cfe987ed9 Bump typescript from 6.0.3 to 7.0.2
Bumps [typescript](https://github.com/microsoft/TypeScript) from 6.0.3 to 7.0.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/compare/v6.0.3...v7.0.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-09-21 16:53:07 +00:00

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.1",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.13.5",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"esbuild": "^0.28.2",
"eslint": "^10.10.0",
"eslint-plugin-check-file": "^3.3.2",
"eslint-plugin-jest": "^29.16.6",
"globals": "^17.12.0",
"jest": "^30.5.1",
"jest-circus": "^30.3.0",
"js-yaml": "^5.4.2",
"prettier": "^3.9.7",
"ts-jest": "^29.4.12",
"typescript": "^7.0.2"
}
}