mirror of
https://github.com/zenstackhq/zenstack
synced 2026-05-24 10:08:55 +00:00
41 lines
997 B
JSON
41 lines
997 B
JSON
{
|
|
"name": "create-zenstack",
|
|
"version": "3.4.3",
|
|
"description": "Create a new ZenStack project",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --noEmit && tsup-node",
|
|
"lint": "eslint src --ext ts",
|
|
"pack": "pnpm pack"
|
|
},
|
|
"keywords": [],
|
|
"author": "ZenStack Team",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"bin": {
|
|
"create-zenstack": "bin/cli"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"colors": "1.4.0",
|
|
"commander": "^8.3.0",
|
|
"ora": "^5.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@zenstackhq/eslint-config": "workspace:*",
|
|
"@zenstackhq/typescript-config": "workspace:*"
|
|
}
|
|
}
|