trpc-sveltekit
Version:
SvelteKit adapter for tRPC.io, working with Node.js, Vercel and Netlify
78 lines (77 loc) • 1.82 kB
JSON
{
"name": "trpc-sveltekit",
"version": "3.6.3",
"description": "SvelteKit adapter for tRPC.io, working with Node.js, Vercel and Netlify",
"keywords": [
"trpc",
"svelte",
"sveltekit",
"kit",
"adapter",
"handle",
"typescript",
"rpc",
"vercel",
"netlify",
"node"
],
"repository": "icflorescu/trpc-sveltekit",
"homepage": "https://icflorescu.github.io/trpc-sveltekit/",
"bugs": {
"url": "https://github.com/icflorescu/trpc-sveltekit/issues"
},
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/icflorescu"
},
"license": "ISC",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./websocket": {
"types": "./dist/websocket/index.d.ts",
"import": "./dist/websocket/index.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"websocket": [
"dist/websocket/index.d.ts"
]
}
},
"scripts": {
"build": "tsc && cp ../README.md README.md && cp ../LICENSE LICENSE",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@sveltejs/kit": "^1.27.0",
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/ws": "^8.18.0",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@sveltejs/adapter-node": ">=1.2",
"@trpc/client": "^10.0.0",
"@trpc/server": "^10.0.0",
"ws": ">=8"
}
}