mirror of
https://github.com/zuiidea/antd-admin
synced 2026-09-24 01:55:12 +00:00
* 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
40 lines
871 B
JSON
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"
|
|
}
|
|
} |