Files
callstack__agent-device/package.json
T
Michał Pierzchała 6d2d157888 0.2.2
2026-02-05 18:09:20 +01:00

71 lines
2.2 KiB
JSON

{
"name": "agent-device",
"version": "0.2.2",
"description": "Unified control plane for physical and virtual devices via an agent-driven CLI.",
"license": "MIT",
"author": "Callstack",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"agent-device": "bin/agent-device.mjs"
},
"scripts": {
"lint": "node --eval \"console.log('no lint')\"",
"build": "rslib build",
"build:node": "pnpm build && rm -f ~/.agent-device/daemon.json",
"build:swift": "swift build -c release --package-path ios-runner/AXSnapshot",
"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",
"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",
"build:clis": "pnpm build:node && pnpm build:axsnapshot",
"build:all": "pnpm build:node && pnpm build:axsnapshot && pnpm build:xcuitest",
"ad": "node bin/agent-device.mjs",
"format": "prettier --write .",
"prepublishOnly": "pnpm build:node && pnpm build:axsnapshot",
"prepack": "pnpm build:node && pnpm build:axsnapshot",
"typecheck": "tsc -p tsconfig.json",
"test": "node --test",
"test:smoke": "node --test test/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",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"agent",
"device",
"cli",
"adb",
"simctl",
"devicectl",
"ios",
"android"
],
"prettier": {
"singleQuote": true,
"semi": true,
"trailingComma": "all",
"printWidth": 100
},
"dependencies": {
"@clack/prompts": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@rslib/core": "0.19.4",
"prettier": "^3.3.3",
"typescript": "^5.9.3"
}
}