{
  "name": "create-minko-app",
  "version": "0.0.14",
  "packageManager": "pnpm@8.10.5",
  "description": "create app cli",
  "type": "module",
  "keywords": [
    "create app",
    "cli"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hemengke1997/create-minko-app.git"
  },
  "author": "hemengke <https://github.com/hemengke1997>",
  "files": [
    "!src/template-*/.turbo",
    "!src/template-*/deno.lock",
    "!src/template-*/dist",
    "!src/template-*/node_modules",
    "!src/template-*/pnpm-lock.yaml",
    "dist",
    "src/template-*"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "create-minko-app": "./dist/index.js"
  },
  "dependencies": {
    "cross-spawn": "^7.0.3",
    "kolorist": "^1.8.0",
    "prompts": "^2.4.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^18.4.1",
    "@minko-fe/commitlint-config": "^2.0.7",
    "@minko-fe/eslint-config": "^2.2.1",
    "@minko-fe/tsconfig": "^2.0.8",
    "@types/cross-spawn": "^6.0.5",
    "@types/node": "^18.14.4",
    "@types/prompts": "^2.4.4",
    "bumpp": "^9.2.0",
    "conventional-changelog-cli": "^4.1.0",
    "cross-env": "^7.0.3",
    "eslint": "^8.56.0",
    "npm-run-all": "^4.1.5",
    "simple-git-hooks": "^2.9.0",
    "taze": "^0.12.0",
    "tsup": "^7.2.0",
    "typescript": "^5.2.2",
    "vite": "^4.5.0",
    "vitest": "^0.34.6",
    "vitest-e2e": "^0.0.8"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "simple-git-hooks": {
    "commit-msg": "pnpm exec commitlint -e",
    "pre-commit": "pnpm run lint"
  },
  "scripts": {
    "dev": "simple-git-hooks && tsup --watch",
    "build": "tsup",
    "build:pages": "pnpm run build && cd playground/spa && pnpm run build",
    "preinstall": "npx only-allow pnpm",
    "lint": "eslint .",
    "up": "taze -I -w -r",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
    "bump": "bumpp package.json -c -p -t --all -x \"pnpm run changelog\""
  }
}