-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "tapper-core",
"version": "0.0.10",
"description": "CLI Source Code To Interact With Android ADB",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "tsc -w",
"build": "tsc",
"cli-link": "yarn --global unlink tapper-core && yarn --global link",
"validate": "npm run build && npm run cli-link",
"run-dev": "npm run validate && tapper"
},
"bin": {
"tapper": "./dist/index.js"
},
"type": "module",
"keywords": [
"ADB",
"Android ADB",
"Android Developer Options",
"Android Debug Tool",
"Control Android Apps"
],
"author": "Yazan Tarifi",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/tapper-app/tapper-core"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"homepage": "https://tapperapp.com",
"bugs": {
"url": "https://github.com/tapper-app/tapper-core/issues"
},
"files": [
"dist",
"src",
"index.js"
],
"dependencies": {
"@types/figlet": "^1.5.8",
"clear": "^0.1.0",
"commander": "^11.1.0",
"figlet": "^1.7.0",
"inquirer": "^9.2.12",
"path": "^0.12.7"
}
}