{
  "name": "taro-define-config",
  "version": "0.15.1",
  "description": "Provide a defineConfig function for tarojs config",
  "keywords": [
    "config",
    "define-config",
    "taro",
    "taro-plugin",
    "tarojs",
    "typescript"
  ],
  "homepage": "https://github.com/ntnyq/taro-define-config#readme",
  "bugs": {
    "url": "https://github.com/ntnyq/taro-define-config/issues"
  },
  "license": "MIT",
  "author": {
    "name": "ntnyq",
    "email": "ntnyq13@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "ntnyq/taro-define-config"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "dependencies": {
    "@jridgewell/source-map": "^0.3.11",
    "@sass/types": "^1.102.0",
    "@swc/types": "^0.1.28",
    "@types/html-minifier-terser": "^7.0.2",
    "@types/node": "^26.1.2",
    "rollup": "^4.62.4",
    "tapable": "^2.3.3",
    "vite": "^8.2.1",
    "webpack": "^5.109.2",
    "webpack-chain": "^6.5.1",
    "webpack-dev-server": "^6.0.0"
  },
  "devDependencies": {
    "@typescript/native-preview": "^7.0.0-dev.20260707.2",
    "bumpp": "^12.2.0",
    "husky": "^9.1.7",
    "nano-staged": "^1.0.2",
    "npm-run-all2": "^9.0.3",
    "oxfmt": "^0.62.0",
    "oxlint": "^1.77.0",
    "tsdown": "^0.22.14",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "nano-staged": {
    "*.{js,ts,mjs,tsx}": "oxlint --fix",
    "*": "oxfmt --no-error-on-unmatched-pattern"
  },
  "scripts": {
    "build": "tsdown",
    "format": "oxfmt",
    "format:check": "oxfmt --check",
    "lint": "oxlint",
    "release": "run-s build release:check release:version",
    "release:check": "run-s format:check lint typecheck",
    "release:version": "bumpp",
    "test": "vitest",
    "typecheck": "tsgo --noEmit"
  }
}