zenstack/packages/create-zenstack/package.json
2026-04-15 12:13:34 -07:00

53 lines
1.4 KiB
JSON

{
"name": "create-zenstack",
"displayName": "Create ZenStack",
"description": "Create a new ZenStack project",
"version": "3.6.0",
"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",
"lint": "eslint src --ext ts",
"pack": "pnpm pack"
},
"keywords": [],
"files": [
"dist"
],
"bin": {
"create-zenstack": "bin/cli"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"dependencies": {
"colors": "1.4.0",
"commander": "^8.3.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "catalog:",
"@zenstackhq/eslint-config": "workspace:*",
"@zenstackhq/tsdown-config": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*"
},
"funding": "https://github.com/sponsors/zenstackhq"
}