zenstack/packages/sdk/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

65 lines
1.8 KiB
JSON

{
"name": "@zenstackhq/sdk",
"displayName": "ZenStack SDK",
"description": "Utilities for building ZenStack plugins",
"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",
"watch": "tsdown --watch",
"lint": "eslint src --ext ts",
"pack": "pnpm pack"
},
"keywords": [],
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./ast": {
"import": {
"types": "./dist/ast.d.mts",
"default": "./dist/ast.mjs"
},
"require": {
"types": "./dist/ast.d.cts",
"default": "./dist/ast.cjs"
}
}
},
"dependencies": {
"@zenstackhq/language": "workspace:*",
"@zenstackhq/common-helpers": "workspace:*",
"langium": "catalog:",
"ts-pattern": "catalog:",
"typescript": "catalog:"
},
"devDependencies": {
"@zenstackhq/eslint-config": "workspace:*",
"@zenstackhq/tsdown-config": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*",
"decimal.js": "catalog:",
"kysely": "catalog:",
"@types/node": "catalog:"
},
"funding": "https://github.com/sponsors/zenstackhq"
}