-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "setup-android",
"version": "5",
"description": "setup-android for self hosted runner",
"type": "module",
"main": "dist/setup/index.js",
"scripts": {
"postinstall": "patch-package",
"build": "tsc",
"lint": "biome check ./src/",
"lint-fix": "biome check --write --unsafe ./src/",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit --incremental false",
"package": "npx rimraf ./dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"all": "npm run postinstall && npm run build && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"setup-android",
"actions",
"android",
"setup",
"self",
"hosted",
"runner"
],
"author": "amyu",
"license": "MIT",
"dependencies": {
"@actions/cache": "^5.0.3",
"@actions/core": "^3.0.0",
"@actions/io": "^3.0.0",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.4.0",
"patch-package": "8.0.1",
"rollup": "^4.54.0",
"typescript": "^6.0.0"
},
"engines": {
"node": ">=24.0.0"
}
}