zenstack/packages/cli/package.json
Yiming Cao 52aec66c95
feat: got policies to work with todo sample (#1)
* WIP

* got todo sample running with policies
2025-05-08 18:35:38 -07:00

55 lines
1.5 KiB
JSON

{
"name": "@zenstackhq/cli",
"publisher": "zenstack",
"displayName": "ZenStack Language Tools",
"description": "FullStack database toolkit with built-in access control and automatic API generation.",
"version": "3.0.0-alpha.1",
"type": "module",
"author": {
"name": "ZenStack Team"
},
"homepage": "https://zenstack.dev",
"license": "MIT",
"keywords": [
"orm",
"fullstack",
"react",
"typescript",
"data modeling"
],
"bin": {
"zenstack": "bin/cli"
},
"scripts": {
"build": "tsup-node",
"watch": "tsup-node --watch",
"test": "vitest",
"pack": "pnpm pack"
},
"dependencies": {
"@types/node": "^18.0.0",
"@zenstackhq/language": "workspace:*",
"@zenstackhq/runtime": "workspace:*",
"@zenstackhq/sdk": "workspace:*",
"async-exit-hook": "^2.0.1",
"colors": "1.4.0",
"commander": "^8.3.0",
"langium": "~3.3.0",
"ora": "^5.4.1",
"tiny-invariant": "^1.3.3",
"ts-pattern": "^4.3.0"
},
"peerDependencies": {
"prisma": "^6.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@zenstackhq/testtools": "workspace:*",
"@types/async-exit-hook": "^2.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/semver": "^7.3.13",
"@types/tmp": "^0.2.6",
"better-sqlite3": "^11.8.1",
"tmp": "^0.2.3"
}
}