{
"name": "tauri-plugin-tauribun",
"version": "0.1.0",
"author": "You",
"license": "MIT",
"description": "Tauri plugin for managing Bun sidecars with oRPC communication",
"repository": {
"type": "git",
"url": "https://github.com/lott-ai/tauribun.git",
"directory": "packages/tauri-plugin-tauribun"
},
"homepage": "https://github.com/lott-ai/tauribun",
"keywords": [
"tauri",
"bun",
"plugin",
"orpc",
"sidecar"
],
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./src/index.ts"
}
},
"files": [
"src/**/*.ts",
"README.md"
],
"scripts": {
"check": "tsc --noEmit && cargo check",
"test": "bun test && cargo test --all-targets --all-features"
},
"dependencies": {
"@logtape/logtape": "^2.0.1",
"@orpc/client": "1.13.4",
"@tauri-apps/api": "^2.0.0",
"orpc-adapter-stdio": "0.0.1"
},
"peerDependencies": {
"@orpc/server": ">=1.13.0",
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/node": "^25.0.10",
"typescript": "^5.3.3",
"zod": "4.3.6"
},
"publishConfig": {
"access": "public"
}
}