mirror of
https://github.com/ByteAtATime/raycast-linux.git
synced 2025-12-23 10:11:57 +00:00
Introduces a shared `@raycast-linux/protocol` package using pnpm workspaces to define and validate the communication contract between the sidecar and the frontend.
17 lines
302 B
JSON
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"
|
|
}
|