-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "setup-android",
"version": "6",
"description": "Install and cache Android SDK components on self-hosted GitHub Actions runners",
"type": "module",
"main": "dist/setup/index.js",
"packageManager": "pnpm@11.22.0",
"scripts": {
"postinstall": "patch-package",
"build": "tsc",
"format": "oxfmt --write ./src/",
"format-check": "oxfmt --check ./src/",
"lint": "oxlint ./src/ && pnpm run format-check",
"lint-fix": "oxlint --fix ./src/ && pnpm run format",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit --incremental false",
"package": "pnpm dlx rimraf ./dist && pnpm run typecheck && rolldown --config rolldown.config.ts",
"all": "pnpm run postinstall && pnpm run lint && pnpm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amyu/setup-android.git"
},
"keywords": [
"setup-android",
"actions",
"android",
"setup",
"self",
"hosted",
"runner"
],
"author": "amyu",
"license": "MIT",
"dependencies": {
"@actions/cache": "6.1.0",
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@actions/io": "3.0.2",
"@actions/tool-cache": "4.0.0"
},
"devDependencies": {
"@types/node": "24.13.3",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"oxlint-tsgolint": "7.0.2001",
"patch-package": "8.0.1",
"rolldown": "1.2.4",
"typescript": "7.0.2"
},
"engines": {
"node": "24.19.0"
}
}