{
  "name": "create-arco-pro",
  "version": "0.2.8",
  "description": "A template to quickly initialize an Arco project",
  "author": "oljc <ljc.byte@gmail.com>",
  "main": "dist/index.js",
  "type": "module",
  "files": [
    "dist",
    "templates",
    "LICENSE"
  ],
  "bin": {
    "create-arco": "./dist/index.js"
  },
  "engines": {
    "node": ">=v18.3.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/oljc/create-arco.git"
  },
  "bugs": {
    "url": "https://github.com/oljc/create-arco/issues"
  },
  "homepage": "https://github.com/oljc/create-arco",
  "keywords": [
    "create-arco-pro",
    "create-arco",
    "arco-pro",
    "template",
    "arco"
  ],
  "license": "MIT",
  "dependencies": {
    "axios": "^1.9.0",
    "sisteransi": "^1.0.5",
    "tar": "^7.4.3"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@eslint/js": "^9.27.0",
    "@rslib/core": "^0.3.2",
    "@types/node": "^22.15.23",
    "eslint": "^9.27.0",
    "husky": "^9.1.7",
    "lint-staged": "^15.5.2",
    "prettier": "^3.5.3",
    "standard-version": "^9.5.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.33.0"
  },
  "lint-staged": {
    "*.{js,ts,mjs}": [
      "prettier --write",
      "eslint --fix"
    ]
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "dev": "rslib build --watch",
    "build": "rslib build",
    "check": "tsc --noEmit",
    "format": "prettier --write .",
    "lint": "eslint .",
    "release": "pnpm run build && standard-version"
  }
}