zenstack/packages/server/package.json
2024-10-29 12:33:23 -07:00

78 lines
2.5 KiB
JSON

{
"name": "@zenstackhq/server",
"version": "2.8.0",
"displayName": "ZenStack Server-side Adapters",
"description": "ZenStack server-side adapters",
"homepage": "https://zenstack.dev",
"scripts": {
"clean": "rimraf dist",
"build": "pnpm lint --max-warnings=0 && pnpm clean && tsc && copyfiles ./package.json ./README.md ./LICENSE dist && pnpm pack dist --pack-destination ../../../.build",
"watch": "tsc --watch",
"lint": "eslint src --ext ts",
"test": "jest",
"prepublishOnly": "pnpm build"
},
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"keywords": [
"fastify",
"express",
"nextjs",
"sveltekit",
"nuxtjs"
],
"author": "ZenStack Team",
"license": "MIT",
"dependencies": {
"@zenstackhq/runtime": "workspace:*",
"change-case": "^4.1.2",
"lower-case-first": "^2.0.2",
"superjson": "^1.13.0",
"tiny-invariant": "^1.3.1",
"ts-japi": "^1.10.1",
"upper-case-first": "^2.0.2",
"url-pattern": "^1.0.3",
"zod": "^3.22.4",
"zod-validation-error": "^1.5.0",
"decimal.js": "^10.4.2"
},
"devDependencies": {
"@nestjs/common": "^10.3.7",
"@nestjs/platform-express": "^10.3.7",
"@nestjs/testing": "^10.3.7",
"@sveltejs/kit": "1.21.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/supertest": "^2.0.12",
"@zenstackhq/testtools": "workspace:*",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"fastify": "^4.14.1",
"fastify-plugin": "^4.5.0",
"h3": "^1.8.2",
"hono": "^4.6.3",
"isomorphic-fetch": "^3.0.0",
"next": "14.2.4",
"nuxt": "^3.7.4",
"reflect-metadata": "^0.2.2",
"supertest": "^6.3.3"
},
"exports": {
"./package.json": "./package.json",
"./api": "./api/index.js",
"./api/rest": "./api/rest/index.js",
"./api/rpc": "./api/rpc/index.js",
"./express": "./express/index.js",
"./fastify": "./fastify/index.js",
"./next/app-route-handler": "./next/app-route-handler.js",
"./next": "./next/index.js",
"./next/pages-route-handler": "./next/pages-route-handler.js",
"./sveltekit": "./sveltekit/index.js",
"./nuxt": "./nuxt/index.js",
"./nestjs": "./nestjs/index.js",
"./hono": "./hono/index.js",
"./types": "./types.js"
}
}