-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "android-use",
"version": "0.1.0",
"description": "CLI + library for Android device control. Automate taps, swipes, text input, screenshots, and app launching with structured output.",
"main": "dist/index.js",
"module": "src/index.ts",
"license": "MIT",
"author": "Iury Souza",
"repository": {
"type": "git",
"url": "https://github.com/iurysza/android-use.git"
},
"bugs": {
"url": "https://github.com/iurysza/android-use/issues"
},
"homepage": "https://github.com/iurysza/android-use#readme",
"keywords": [
"android",
"adb",
"cli",
"automation",
"device-control",
"mobile",
"android-automation",
"ui-testing",
"android-cli"
],
"type": "module",
"engines": {
"bun": ">=1.3.8"
},
"bin": {
"android-use": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"build": "bun build ./src/index.ts --outdir ./dist --target bun && chmod +x ./dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "bunx biome lint .",
"format": "bunx biome format . --write",
"format:check": "bunx biome format .",
"prepublishOnly": "bun run build",
"prepare": "husky install || true"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "^1.1.0",
"husky": "^9.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"zod": "^4.3.6"
}
}