{
  "name": "tokana",
  "version": "0.1.2",
  "description": "Modern Japanese morphological analyzer for TypeScript",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "browser": "./dist/browser.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "browser": {
        "types": "./dist/browser.d.ts",
        "default": "./dist/browser.js"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "bin": {
    "tokana": "dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "check": "npm run typecheck && npm test && npm run build",
    "prepack": "npm run build",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit"
  },
  "keywords": [
    "japanese",
    "morphological-analysis",
    "tokenizer",
    "nlp",
    "ipadic",
    "unidic",
    "neologd",
    "kuromoji"
  ],
  "author": "mnaoizy",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mnaoizy/tokana.git"
  },
  "homepage": "https://github.com/mnaoizy/tokana#readme",
  "bugs": {
    "url": "https://github.com/mnaoizy/tokana/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "tsup": "^8.0.0",
    "typescript": "^5.4.0",
    "vite": "^6.4.2",
    "vitest": "^3.2.4"
  }
}
