generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.14 KB
/
package.json
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
{
"name": "setup-android",
"version": "4",
"description": "setup-android for self hosted runner",
"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": "ncc build -o dist/setup src/setup-android.ts && ncc build -o dist/cleanup src/cleanup-android.ts",
"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": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.5.6",
"@vercel/ncc": "^0.38.0",
"patch-package": "8.0.0",
"typescript": "^5.2.2"
}
}