trpc-playground
Version:
playground for running tRPC queries in the browser
73 lines • 1.8 kB
JSON
{
"name": "trpc-playground",
"type": "module",
"version": "1.0.4",
"publishConfig": {
"access": "public"
},
"description": "playground for running tRPC queries in the browser",
"repository": {
"directory": "packages/trpc-playground",
"type": "git",
"url": "https://github.com/sachinraja/trpc-playground"
},
"homepage": "https://github.com/sachinraja/trpc-playground#readme",
"bugs": {
"url": "https://github.com/sachinraja/trpc-playground/issues"
},
"author": "Sachin Raja <sachinraja2349@gmail.com>",
"license": "MIT",
"keywords": [
"trpc",
"playground"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"./handlers/*": {
"types": "./dist/handlers/*.d.ts",
"import": "./dist/handlers/*.js",
"default": "./dist/handlers/*.cjs"
}
},
"files": [
"dist",
"handlers"
],
"peerDependencies": {
"@trpc/server": "^10",
"zod": "^3"
},
"dependencies": {
"@trpc-playground/html": "1.0.4",
"@trpc-playground/types": "1.0.0",
"lodash": "^4.17.21",
"uttp": "^0.1.3",
"zod-to-ts": "^1.1.2"
},
"devDependencies": {
"@trpc/server": "10.5.0",
"@types/aws-lambda": "8.10.109",
"@types/express": "4.17.15",
"@types/koa": "2.13.5",
"@types/lodash": "4.14.191",
"fastify": "4.10.2",
"h3": "1.0.2",
"next": "13.0.7",
"zod": "3.20.2"
},
"scripts": {
"build": "pnpm clean && run-p build:*",
"build:js": "tsup",
"build:types": "tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"watch": "tsup --watch --no-dts",
"type-check": "tsc"
}
}