zenstack/packages/runtime/package.json
2023-02-11 17:07:57 +08:00

56 lines
1.7 KiB
JSON

{
"name": "@zenstackhq/runtime",
"displayName": "ZenStack Runtime Library",
"version": "1.0.0-alpha.33",
"description": "Runtime of ZenStack for both client-side and server-side environments.",
"repository": {
"type": "git",
"url": "https://github.com/zenstackhq/zenstack"
},
"scripts": {
"clean": "rimraf dist",
"build": "pnpm lint && pnpm clean && tsc && copyfiles ./package.json ./README.md ../../LICENSE dist",
"watch": "tsc --watch",
"lint": "eslint src --ext ts",
"prepublishOnly": "pnpm build",
"publish-dev": "pnpm publish --tag dev"
},
"publishConfig": {
"directory": "dist",
"linkDirectory": true
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@zenstackhq/sdk": "workspace:*",
"bcryptjs": "^2.4.3",
"change-case": "^4.1.2",
"colors": "1.4.0",
"cuid": "^2.1.8",
"decimal.js": "^10.4.2",
"deepcopy": "^2.1.0",
"superjson": "^1.11.0",
"swr": "^1.3.0",
"tslib": "^2.4.1",
"zod": "^3.19.1",
"zod-validation-error": "^0.2.1"
},
"peerDependencies": {
"@prisma/client": "^4.0.0",
"next": "^12.3.1 || ^13",
"react": "^17.0.2 || ^18",
"react-dom": "^17.0.2 || ^18"
},
"author": {
"name": "ZenStack Team"
},
"homepage": "https://zenstack.dev",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.0.3",
"@types/node": "^14.18.29",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
}
}