1
0
mirror of https://github.com/zuiidea/antd-admin synced 2026-09-24 01:55:12 +00:00
Files
antd-admin/packages/create/package.json
zuiidea f28bae8f3e Feature/upgrade (#1170)
* chore: align workspace tooling and refresh docs

Unify pnpm workspace configuration and CI versioning, upgrade create package dependencies, and update README guidance for basic and with-lingui templates.

Made-with: Cursor

* chore: regenerate route tree files

Update generated route tree outputs after recent formatting and script changes.

Made-with: Cursor

* ci: fix with-lingui e2e script name

Use the existing test:e2e script in CI to avoid missing-script failures.

Made-with: Cursor
2026-04-28 18:52:45 +08:00

40 lines
871 B
JSON

{
"name": "init-antd-admin",
"version": "1.0.3",
"description": "Create an Antd Admin app from official examples",
"license": "MIT",
"type": "module",
"bin": {
"init-antd-admin": "dist/cli.js"
},
"files": [
"dist/cli.js",
"dist/examples.json"
],
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "tsup && node ./scripts/write-examples-json.mjs",
"dev": "tsup --watch",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/prompts": "^8.4.2",
"commander": "^14.0.0",
"giget": "^3.2.0",
"picocolors": "^1.0.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsup": "^8.3.5",
"typescript": "~6.0.3",
"vitest": "^3.0.5"
}
}