mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@getpaseo/relay",
|
|
"version": "0.1.40",
|
|
"description": "Paseo relay for bridging daemon and client connections",
|
|
"type": "module",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"node": "./dist/index.js",
|
|
"import": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./e2ee": {
|
|
"types": "./dist/e2ee.d.ts",
|
|
"node": "./dist/e2ee.js",
|
|
"import": "./src/e2ee.ts",
|
|
"default": "./src/e2ee.ts"
|
|
},
|
|
"./cloudflare": {
|
|
"types": "./dist/cloudflare-adapter.d.ts",
|
|
"node": "./dist/cloudflare-adapter.js",
|
|
"import": "./src/cloudflare-adapter.ts",
|
|
"default": "./src/cloudflare-adapter.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "node -e \"require('node:fs').rmSync('dist',{ recursive: true, force: true })\" && tsc -p tsconfig.json --incremental false",
|
|
"prepack": "npm run build",
|
|
"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"
|
|
}
|
|
}
|