mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
- Add dedicated draft-store with AsyncStorage persistence for drafts that survive app refresh/crash - Reduce markdown bold weight from bold to medium (500) - Various theme and component style updates - Server bootstrap and config improvements 🤖 Generated with [Claude Code](https://claude.com/claude-code)
27 lines
619 B
JSON
27 lines
619 B
JSON
{
|
|
"name": "@paseo/relay",
|
|
"version": "0.1.0",
|
|
"description": "Paseo relay for bridging daemon and client connections",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./node": "./src/node-adapter.ts",
|
|
"./cloudflare": "./src/cloudflare-adapter.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.14.2"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^4.20241230.0",
|
|
"@types/node": "^20.9.0",
|
|
"@types/ws": "^8.5.8",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|