mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
29 lines
665 B
JSON
29 lines
665 B
JSON
{
|
|
"name": "@paseo/relay",
|
|
"version": "0.1.0",
|
|
"description": "Paseo relay for bridging daemon and client connections",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./e2ee": "./src/e2ee.ts",
|
|
"./cloudflare": "./src/cloudflare-adapter.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"base64-js": "^1.5.1",
|
|
"tweetnacl": "^1.0.3",
|
|
"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"
|
|
}
|
|
}
|