mirror of
https://github.com/ArthurDanjou/trpc-nuxt.git
synced 2026-01-14 20:19:33 +01:00
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "trpc-nuxt",
|
|
"type": "module",
|
|
"version": "0.3.2",
|
|
"license": "MIT",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"require": "./dist/module.cjs",
|
|
"import": "./dist/module.mjs"
|
|
},
|
|
"./api": {
|
|
"types": "./dist/runtime/api.d.ts",
|
|
"import": "./dist/runtime/api.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/module.cjs",
|
|
"types": "./dist/types.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "pnpm build",
|
|
"build": "nuxt-module-build",
|
|
"play": "pnpm 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",
|
|
"@trpc/server": "<10.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/kit": "3.0.0-rc.12",
|
|
"@trpc/client": "^9.27.4",
|
|
"@trpc/server": "^9.27.4",
|
|
"dedent": "^0.7.0",
|
|
"defu": "^6.1.0",
|
|
"h3": "^0.8.6",
|
|
"ohash": "^0.1.5",
|
|
"pathe": "^0.3.9",
|
|
"ufo": "^0.8.6"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.23.1",
|
|
"@nuxt/module-builder": "^0.2.0",
|
|
"@types/dedent": "^0.7.0",
|
|
"bumpp": "^7.2.0",
|
|
"eslint": "^8.25.0",
|
|
"nuxt": "3.0.0-rc.12",
|
|
"trpc-nuxt": "workspace:*",
|
|
"zod": "^3.19.1"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@antfu",
|
|
"rules": {
|
|
"no-console": "warn"
|
|
}
|
|
}
|
|
}
|