{
  "name": "chinese-conv",
  "description": "我就懶，無依賴的，簡繁轉換解決方案。very simple solution for lazy people, no dependencies, converting simplified to traditional and traditional to simplified.",
  "version": "4.0.0",
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": "^20.19.0 || >=22.12.0"
  },
  "keywords": [
    "Traditional",
    "unicode",
    "Simplified",
    "conversion",
    "Chinese",
    "convert",
    "transform"
  ],
  "devDependencies": {
    "@types/node": "24.9.2",
    "@vitest/coverage-v8": "4.0.4",
    "lefthook": "2.0.2",
    "prettier": "3.6.2",
    "prettier-plugin-jsdoc": "1.3.3",
    "publint": "0.3.15",
    "turbo": "2.5.8",
    "typescript": "5.8.2",
    "vite": "7.1.12",
    "vite-plugin-dts": "4.5.4",
    "vitest": "4.0.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aqzhyi/chinese-conv.git"
  },
  "author": {
    "name": "ねむけ (Nemuke)",
    "email": "pleasurazy@gmail.com",
    "url": "https://github.com/aqzhyi"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/aqzhyi/chinese-conv/issues"
  },
  "homepage": "https://github.com/aqzhyi/chinese-conv#readme",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "vite build -w",
    "build": "vite build && cp dist/index.d.ts dist/index.d.cts",
    "tsc": "tsc --noEmit",
    "tsc:w": "tsc --noEmit --watch --preserveWatchOutput",
    "test": "vitest run",
    "test:w": "vitest -w",
    "test:coverage": "vitest run --coverage",
    "lint": "publint",
    "format": "prettier --write ."
  }
}