mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 20:19:33 +01:00
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "trpc-nuxt",
|
|
"type": "module",
|
|
"version": "0.3.1",
|
|
"packageManager": "pnpm@7.5.0",
|
|
"license": "MIT",
|
|
"main": "./dist/module.cjs",
|
|
"types": "./dist/types.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": "./dist/module.mjs",
|
|
"require": "./dist/module.cjs"
|
|
},
|
|
"./api": {
|
|
"import": "./dist/runtime/api.mjs",
|
|
"types": "./dist/runtime/api.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "nr build",
|
|
"build": "nuxt-module-build",
|
|
"play": "nr build && nuxi dev playground",
|
|
"build:playground": "nuxi build playground",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"release": "bumpp --commit --push --tag && npm publish",
|
|
"prepare": "nuxi prepare playground"
|
|
},
|
|
"peerDependencies": {
|
|
"@trpc/client": "^10.0.0-proxy-beta.21",
|
|
"@trpc/server": "^10.0.0-proxy-beta.21"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/kit": "3.0.0-rc.12",
|
|
"dedent": "^0.7.0",
|
|
"defu": "^6.1.0",
|
|
"h3": "^0.8.5",
|
|
"ohash": "^0.1.5",
|
|
"pathe": "^0.3.9",
|
|
"ufo": "^0.8.6"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.23.1",
|
|
"@antfu/ni": "^0.16.2",
|
|
"@nuxt/module-builder": "^0.2.0",
|
|
"@trpc/client": "10.0.0-rc.1",
|
|
"@trpc/server": "10.0.0-rc.1",
|
|
"@types/dedent": "^0.7.0",
|
|
"bumpp": "^7.2.0",
|
|
"eslint": "^8.25.0",
|
|
"nuxt": "3.0.0-rc.12",
|
|
"pnpm": "^7.5.0",
|
|
"trpc-nuxt": "workspace:*",
|
|
"zod": "^3.19.1"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@antfu",
|
|
"rules": {
|
|
"no-console": "warn"
|
|
}
|
|
}
|
|
}
|