agent-device 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/axsnapshot +0 -0
- package/package.json +20 -18
package/dist/bin/axsnapshot
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-device",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Unified control plane for physical and virtual devices via an agent-driven CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Callstack",
|
|
@@ -11,6 +11,24 @@
|
|
|
11
11
|
"bin": {
|
|
12
12
|
"agent-device": "bin/agent-device.mjs"
|
|
13
13
|
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"lint": "node --eval \"console.log('no lint')\"",
|
|
16
|
+
"build": "rslib build",
|
|
17
|
+
"build:node": "pnpm build && rm -f ~/.agent-device/daemon.json",
|
|
18
|
+
"build:swift": "swift build -c release --package-path ios-runner/AXSnapshot",
|
|
19
|
+
"build:axsnapshot": "pnpm build:swift && mkdir -p dist/bin && cp -f ios-runner/AXSnapshot/.build/release/axsnapshot dist/bin/axsnapshot && chmod +x dist/bin/axsnapshot",
|
|
20
|
+
"build:xcuitest": "AGENT_DEVICE_IOS_CLEAN_DERIVED=1 xcodebuild build-for-testing -project ios-runner/AgentDeviceRunner/AgentDeviceRunner.xcodeproj -scheme AgentDeviceRunner -destination \"generic/platform=iOS Simulator\" -derivedDataPath ~/.agent-device/ios-runner/derived",
|
|
21
|
+
"build:clis": "pnpm build:node && pnpm build:axsnapshot",
|
|
22
|
+
"build:all": "pnpm build:node && pnpm build:axsnapshot && pnpm build:xcuitest",
|
|
23
|
+
"ad": "node bin/agent-device.mjs",
|
|
24
|
+
"format": "prettier --write .",
|
|
25
|
+
"prepublishOnly": "pnpm build:node && pnpm build:axsnapshot",
|
|
26
|
+
"prepack": "pnpm build:node && pnpm build:axsnapshot",
|
|
27
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
28
|
+
"test": "node --test",
|
|
29
|
+
"test:smoke": "node --test test/smoke/*.test.ts",
|
|
30
|
+
"test:integration": "node --test test/integration/*.test.ts"
|
|
31
|
+
},
|
|
14
32
|
"files": [
|
|
15
33
|
"bin",
|
|
16
34
|
"dist",
|
|
@@ -48,21 +66,5 @@
|
|
|
48
66
|
"@rslib/core": "0.19.4",
|
|
49
67
|
"prettier": "^3.3.3",
|
|
50
68
|
"typescript": "^5.9.3"
|
|
51
|
-
},
|
|
52
|
-
"scripts": {
|
|
53
|
-
"lint": "node --eval \"console.log('no lint')\"",
|
|
54
|
-
"build": "rslib build",
|
|
55
|
-
"build:node": "pnpm build && rm -f ~/.agent-device/daemon.json",
|
|
56
|
-
"build:swift": "swift build -c release --package-path ios-runner/AXSnapshot",
|
|
57
|
-
"build:axsnapshot": "pnpm build:swift && mkdir -p dist/bin && cp -f ios-runner/AXSnapshot/.build/release/axsnapshot dist/bin/axsnapshot && chmod +x dist/bin/axsnapshot",
|
|
58
|
-
"build:xcuitest": "AGENT_DEVICE_IOS_CLEAN_DERIVED=1 xcodebuild build-for-testing -project ios-runner/AgentDeviceRunner/AgentDeviceRunner.xcodeproj -scheme AgentDeviceRunner -destination \"generic/platform=iOS Simulator\" -derivedDataPath ~/.agent-device/ios-runner/derived",
|
|
59
|
-
"build:clis": "pnpm build:node && pnpm build:axsnapshot",
|
|
60
|
-
"build:all": "pnpm build:node && pnpm build:axsnapshot && pnpm build:xcuitest",
|
|
61
|
-
"ad": "node bin/agent-device.mjs",
|
|
62
|
-
"format": "prettier --write .",
|
|
63
|
-
"typecheck": "tsc -p tsconfig.json",
|
|
64
|
-
"test": "node --test",
|
|
65
|
-
"test:smoke": "node --test test/smoke/*.test.ts",
|
|
66
|
-
"test:integration": "node --test test/integration/*.test.ts"
|
|
67
69
|
}
|
|
68
|
-
}
|
|
70
|
+
}
|