Files
Michał Pierzchała c7f42ccedc refactor: move Android family behind package exports (#2117)
* refactor: move Android family behind package exports

* fix: address Android W5 review feedback

* fix: update relocated routing fixture assertion
2026-08-28 13:02:28 +02:00

30 lines
810 B
JSON

{
"name": "@agent-device/platform-android",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Android-family platform runtime metadata and implementations for agent-device.",
"dependencies": {
"@agent-device/capture-kit": "workspace:*",
"@agent-device/contracts": "workspace:*",
"@agent-device/host-kit": "workspace:*",
"@agent-device/kernel": "workspace:*",
"@agent-device/provision-kit": "workspace:*",
"@agent-device/xml": "workspace:*"
},
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./adb-host": {
"types": "./src/adb-host.ts",
"default": "./src/adb-host.ts"
},
"./mechanics": {
"types": "./src/mechanics.ts",
"default": "./src/mechanics.ts"
}
}
}