{
  "name": "kuromojin",
  "version": "3.0.1",
  "description": "Provide a high level wrapper for kuromoji.js",
  "keywords": [
    "kuromoji",
    "kuromoji.js",
    "promise"
  ],
  "homepage": "https://github.com/azu/kuromojin",
  "bugs": {
    "url": "https://github.com/azu/kuromojin/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/azu/kuromojin.git"
  },
  "license": "MIT",
  "main": "lib/index.js",
  "files": [
    "lib/",
    "src/"
  ],
  "types": "lib/index.d.ts",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "dev": "npm run cp-public && vite",
    "preview": "npm run cp-public && vite preview",
    "web:build": "npm run cp-public && vite build",
    "build": "cross-env NODE_ENV=production tsc -p .",
    "prepublish": "npm run --if-present build",
    "test": "mocha \"test/**/*.{js,ts}\"",
    "watch": "tsc -p . --watch",
    "cp-public": "mkdir -p public && cp -r node_modules/kuromoji/dict public/",
    "netlify": "npm run web:build",
    "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
    "prepare": "git config --local core.hooksPath .githooks"
  },
  "dependencies": {
    "@kvs/env": "^2.1.3",
    "kuromoji": "0.1.2",
    "lru_map": "^0.4.1"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.6",
    "@types/node": "^20.10.6",
    "cross-env": "^7.0.3",
    "lint-staged": "^15.2.0",
    "mocha": "^10.2.0",
    "node-stdlib-browser": "^1.2.0",
    "prettier": "^3.1.1",
    "tiny-compressor": "^1.0.1",
    "ts-node": "^10.9.2",
    "ts-node-test-register": "^10.0.0",
    "typescript": "^5.3.3",
    "vite": "^5.0.11",
    "vite-plugin-node-stdlib-browser": "^0.2.1"
  },
  "email": "azuciao@gmail.com",
  "prettier": {
    "singleQuote": false,
    "printWidth": 120,
    "tabWidth": 4,
    "trailingComma": "none"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css}": [
      "prettier --write"
    ]
  }
}
