-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "agent-device",
"version": "0.9.0",
"description": "Unified control plane for physical and virtual devices via an agent-driven CLI.",
"license": "MIT",
"author": "Callstack",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"engines": {
"node": ">=22"
},
"bin": {
"agent-device": "bin/agent-device.mjs"
},
"scripts": {
"build": "rslib build",
"clean:daemon": "rm -f ~/.agent-device/daemon.json && rm -f ~/.agent-device/daemon.lock",
"build:node": "pnpm build && pnpm clean:daemon",
"build:xcuitest": "pnpm build:xcuitest:ios && pnpm build:xcuitest:macos",
"build:xcuitest:ios": "rm -rf ~/.agent-device/ios-runner/derived/device && xcodebuild build-for-testing -project ios-runner/AgentDeviceRunner/AgentDeviceRunner.xcodeproj -scheme AgentDeviceRunner -destination \"generic/platform=iOS Simulator\" -derivedDataPath ~/.agent-device/ios-runner/derived",
"build:xcuitest:macos": "rm -rf ~/.agent-device/ios-runner/derived/macos && xcodebuild build-for-testing -project ios-runner/AgentDeviceRunner/AgentDeviceRunner.xcodeproj -scheme AgentDeviceRunner -destination \"platform=macOS,arch=$(uname -m)\" -derivedDataPath ~/.agent-device/ios-runner/derived/macos CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY=\"\" DEVELOPMENT_TEAM=\"\"",
"build:xcuitest:tvos": "rm -rf ~/.agent-device/ios-runner/derived/tvos && xcodebuild build-for-testing -project ios-runner/AgentDeviceRunner/AgentDeviceRunner.xcodeproj -scheme AgentDeviceRunner -destination \"generic/platform=tvOS Simulator\" -derivedDataPath ~/.agent-device/ios-runner/derived/tvos",
"build:all": "pnpm build:node && pnpm build:xcuitest",
"ad": "node bin/agent-device.mjs",
"format": "prettier --write src test skills",
"prepublishOnly": "pnpm build:all",
"prepack": "pnpm build:all",
"typecheck": "tsc -p tsconfig.json",
"test": "node --test",
"test:unit": "node --test src/__tests__/*.test.ts src/core/__tests__/*.test.ts src/daemon/__tests__/*.test.ts src/daemon/handlers/__tests__/*.test.ts src/platforms/**/__tests__/*.test.ts src/utils/**/__tests__/*.test.ts",
"test:smoke": "node --test test/integration/smoke-*.test.ts",
"test:integration": "node --test test/integration/*.test.ts"
},
"files": [
"bin",
"dist",
"ios-runner",
"!ios-runner/**/.build",
"!ios-runner/**/.swiftpm",
"!ios-runner/**/xcuserdata",
"!ios-runner/**/*.xcuserstate",
"skills",
"README.md",
"LICENSE"
],
"keywords": [
"agent",
"device",
"cli",
"adb",
"simctl",
"devicectl",
"ios",
"android"
],
"prettier": {
"singleQuote": true,
"semi": true,
"trailingComma": "all",
"printWidth": 100
},
"dependencies": {
"pngjs": "^7.0.0"
},
"devDependencies": {
"@rslib/core": "0.19.4",
"@types/node": "^22.0.0",
"@types/pngjs": "^6.0.5",
"prettier": "^3.3.3",
"typescript": "^5.9.3"
}
}