{
  "name": "synset",
  "version": "0.9.9",
  "description": "WordNet dictionary parser with Zod validation, query utilities, and CLI",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./schema.sql": "./dist/schema.sql"
  },
  "bin": {
    "synset": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "bun test",
    "format": "biome format --write",
    "lint": "biome lint",
    "check": "biome check",
    "typecheck": "tsc --noEmit",
    "verify": "bun run typecheck && bun run check && bun run test",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "wordnet",
    "dictionary",
    "nlp",
    "lexicon",
    "thesaurus",
    "synonyms",
    "definitions",
    "parser"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/king8fisher/synset"
  },
  "devDependencies": {
    "@biomejs/biome": "2.2.4",
    "@types/bun": "latest",
    "@types/node": "^20.19.30",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@dbushell/xml-streamify": "0.7.0",
    "entities": "^7.0.1",
    "libsql": "^0.5.0",
    "zod": "^4.3.5"
  },
  "engines": {
    "node": ">=18"
  }
}
