{
  "name": "@orama/tokenizers",
  "version": "3.1.4",
  "type": "module",
  "description": "Additional tokenizers for Orama",
  "sideEffects": false,
  "exports": {
    "./japanese": {
      "import": {
        "types": "./dist/esm/japanese.d.ts",
        "default": "./dist/esm/japanese.js"
      },
      "require": {
        "types": "./dist/commonjs/japanese.d.ts",
        "default": "./dist/commonjs/japanese.js"
      }
    },
    "./mandarin": {
      "import": {
        "types": "./dist/esm/mandarin.d.ts",
        "default": "./dist/esm/mandarin.js"
      },
      "require": {
        "types": "./dist/commonjs/mandarin.d.ts",
        "default": "./dist/commonjs/mandarin.js"
      }
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@orama/orama": "3.1.4"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/oramasearch/orama"
  },
  "bugs": {
    "url": "https://github.com/oramasearch/orama"
  },
  "keywords": [
    "full-text search",
    "search",
    "fuzzy search",
    "typo-tolerant search",
    "full-text",
    "vector search",
    "stemming",
    "tokenizers",
    "mandarin",
    "chinese"
  ],
  "author": {
    "name": "Michele Riva",
    "email": "michele.riva@oramasearch.com",
    "url": "https://github.com/MicheleRiva",
    "author": true
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">= 18.0.0"
  },
  "tshy": {
    "dialects": [
      "esm",
      "commonjs"
    ],
    "exports": {
      "./japanese": "./src/japanese.ts",
      "./mandarin": "./src/mandarin.ts",
      "./package.json": "./package.json"
    }
  },
  "devDependencies": {
    "tap": "^18.6.1",
    "tshy": "^3.0.2",
    "tsx": "^4.19.2"
  },
  "scripts": {
    "build": "tshy",
    "test": "tsx ./tests/japanese.test.ts && tsx ./tests/mandarin.test.ts"
  }
}