raycast-linux/packages/protocol/package.json
ByteAtATime 46868539fa feat: add sidecar protocol i/o checking with Zod
Introduces a shared `@raycast-linux/protocol` package using pnpm workspaces to define and validate the communication contract between the sidecar and the frontend.
2025-06-12 19:35:42 -07:00

17 lines
302 B
JSON

{
"name": "@raycast-linux/protocol",
"version": "1.0.0",
"private": true,
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"check": "tsc --noEmit"
},
"dependencies": {
"zod": "^3.25.63"
},
"devDependencies": {
"typescript": "~5.6.2"
},
"packageManager": "pnpm@10.11.1"
}