zenstack/packages/clients/client-helpers/package.json
github-actions[bot] 87644178b3
[CI] Bump version 3.7.1 (#2678)
Co-authored-by: ymc9 <104139426+ymc9@users.noreply.github.com>
2026-05-22 08:31:58 -07:00

53 lines
1.6 KiB
JSON

{
"name": "@zenstackhq/client-helpers",
"displayName": "ZenStack Client Helpers",
"description": "Helpers for implementing clients that consume ZenStack's CRUD service",
"version": "3.7.1",
"type": "module",
"author": {
"name": "ZenStack Team",
"email": "contact@zenstack.dev"
},
"homepage": "https://zenstack.dev",
"repository": {
"type": "git",
"url": "https://github.com/zenstackhq/zenstack"
},
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && tsdown && pnpm test:typecheck",
"watch": "tsdown --watch",
"lint": "eslint src --ext ts",
"test": "vitest run",
"test:typecheck": "tsc --noEmit --project tsconfig.test.json",
"pack": "pnpm pack"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./fetch": {
"types": "./dist/fetch.d.mts",
"default": "./dist/fetch.mjs"
}
},
"dependencies": {
"@zenstackhq/common-helpers": "workspace:*",
"@zenstackhq/schema": "workspace:*",
"@zenstackhq/orm": "workspace:*",
"decimal.js": "catalog:",
"superjson": "^2.2.3"
},
"devDependencies": {
"@types/node": "catalog:",
"@zenstackhq/eslint-config": "workspace:*",
"@zenstackhq/tsdown-config": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*",
"@zenstackhq/vitest-config": "workspace:*"
},
"funding": "https://github.com/sponsors/zenstackhq"
}