-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.69 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
65
66
{
"name": "devicebase",
"version": "0.1.0",
"type": "module",
"description": "Devicebase SDK & CLI for remote Android, HarmonyOS, and iOS device control via HTTP API",
"author": "Devicebase Team (https://devicebase.cn)",
"license": "MIT",
"homepage": "https://github.com/devicebase/devicebase#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/devicebase/devicebase.git"
},
"bugs": {
"url": "https://github.com/devicebase/devicebase/issues"
},
"keywords": [
"devicebase",
"device-automation",
"android",
"ios",
"harmonyos",
"remote-control",
"testing",
"cli"
],
"bin": {
"devicebase": "./dist/bin/devicebase.mjs"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/devicebase.es.js",
"require": "./dist/devicebase.umd.js",
"default": "./dist/devicebase.es.js"
}
},
"main": "./dist/devicebase.umd.js",
"module": "./dist/devicebase.es.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite-node examples/basic-usage.ts",
"build": "vite build && tsc -p tsconfig.lib.json",
"build:bin": "vite build --config vite.config.bin.ts",
"build:all": "vite build && vite build --config vite.config.bin.ts && tsc -p tsconfig.lib.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"prepublishOnly": "npm run build:all"
},
"dependencies": {
"commander": "^14.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.4"
}
}