{
  "name": "romaja",
  "version": "0.9.0",
  "description": "String conversion utility to romanize Korean characters",
  "type": "module",
  "main": "dist/romaja.cjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./src/index.js",
      "require": "./dist/romaja.cjs"
    }
  },
  "sideEffects": false,
  "scripts": {
    "cli": "node bin/cli.js",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
    "format": "prettier --write .",
    "lint": "eslint .",
    "prepare": "npm run build",
    "bundle": "webpack --config webpack.config.cjs",
    "build": "webpack --config webpack.config.cjs && copyfiles -u 1 src/index.d.ts dist/"
  },
  "keywords": [
    "alphabet",
    "choson'gul",
    "chosŏn'gŭl",
    "조선글",
    "hangul",
    "han-geul",
    "han'gŭl",
    "한글",
    "korean",
    "language",
    "한국어",
    "romaja",
    "로마자",
    "romaji",
    "rōmaji",
    "ローマ字",
    "romanization",
    "로마자 표기법",
    "로마자 변환기",
    "transliteration",
    "전자",
    "轉字",
    "unicode",
    "유니코드"
  ],
  "author": "James Moon <mooniker@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "copyfiles": "^2.4.1",
    "eslint": "^9.16.0",
    "eslint-config-next": "^15.0.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^15.4.3",
    "prettier": "^3.5.1",
    "unicode": "^14.0.0",
    "webpack": "^5.106.2",
    "webpack-cli": "^7.0.2"
  },
  "bin": {
    "romaja": "bin/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mooniker/romaja.git"
  },
  "bugs": {
    "url": "https://github.com/mooniker/romaja/issues"
  },
  "homepage": "https://github.com/mooniker/romaja#readme",
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
