zenstack/packages/runtime/package.json

54 lines
1.6 KiB
JSON

{
"name": "@zenstackhq/runtime",
"displayName": "ZenStack Runtime Library",
"version": "1.0.0-alpha.102",
"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": {
"@paralleldrive/cuid2": "^2.2.0",
"@types/bcryptjs": "^2.4.2",
"@zenstackhq/sdk": "workspace:*",
"bcryptjs": "^2.4.3",
"change-case": "^4.1.2",
"colors": "1.4.0",
"decimal.js": "^10.4.2",
"deepcopy": "^2.1.0",
"pluralize": "^8.0.0",
"superjson": "^1.11.0",
"tslib": "^2.4.1",
"zod": "3.21.1",
"zod-validation-error": "^0.2.1"
},
"peerDependencies": {
"@prisma/client": "^4.0.0"
},
"author": {
"name": "ZenStack Team"
},
"homepage": "https://zenstack.dev",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.5.0",
"@types/node": "^14.18.29",
"@types/pluralize": "^0.0.29",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
}
}