{
  "name": "sentence-splitter",
  "version": "5.0.1",
  "description": "split {japanese, english} text into sentences.",
  "keywords": [
    "text",
    "analytics",
    "textlint",
    "nlp"
  ],
  "homepage": "https://github.com/textlint-rule/sentence-splitter",
  "bugs": {
    "url": "https://github.com/textlint-rule/sentence-splitter/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/textlint-rule/sentence-splitter.git"
  },
  "license": "MIT",
  "author": "azu",
  "sideEffects": false,
  "type": "module",
  "directories": {
    "test": "test"
  },
  "files": [
    "bin/",
    "lib/",
    "module/",
    "src/"
  ],
  "scripts": {
    "build": "tsc -p . && tsc -p ./tsconfig.cjs.json && tsconfig-to-dual-package",
    "clean": "git clean -fx lib/ module/",
    "createInputJson": "ts-node-esm ./scripts/generate-input-json-from-_input-md.ts",
    "dev": "vite",
    "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
    "postcommit": "git reset",
    "precommit": "lint-staged",
    "prepare": "git rev-parse --is-inside-work-tree > /dev/null 2>&1 && git config --local core.hooksPath .githooks || echo 'Not inside a Git work tree'",
    "prepublishOnly": "pnpm run clean && pnpm run build",
    "prepublish": "pnpm run --if-present build",
    "site:build": "vite build",
    "test": "mocha",
    "updateSnapshot": "pnpm run createInputJson && UPDATE_SNAPSHOT=1 pnpm test",
    "watch": "tsc -p . --watch"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css}": [
      "prettier --write"
    ]
  },
  "prettier": {
    "printWidth": 120,
    "singleQuote": false,
    "tabWidth": 4,
    "trailingComma": "none"
  },
  "dependencies": {
    "@textlint/ast-node-types": "^13.4.1",
    "structured-source": "^4.0.0"
  },
  "devDependencies": {
    "@textlint/markdown-to-ast": "^13.4.1",
    "@types/mocha": "^10.0.6",
    "@types/node": "^20.10.0",
    "lint-staged": "^15.1.0",
    "mocha": "^10.2.0",
    "prettier": "^3.1.0",
    "ts-node": "^10.9.1",
    "tsconfig-to-dual-package": "^1.2.0",
    "typescript": "^5.3.2",
    "vite": "^5.0.2"
  },
  "packageManager": "pnpm@10.33.0",
  "email": "azuciao@gmail.com"
}