{
  "name": "homeschool",
  "version": "0.2.0",
  "description": "🏠 Teach AI to understand natural language like a patient tutor. Advanced embedding-based function calling with semantic understanding, confidence scoring, and natural language parameter extraction.",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "rollup -c && rollup -c --file dist/index.d.ts --format es",
    "dev": "rollup -c -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src/**/*.{js,ts}",
    "lint:fix": "eslint src/**/*.{js,ts} --fix",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "publish:patch": "node scripts/publish.js patch",
    "publish:minor": "node scripts/publish.js minor",
    "publish:major": "node scripts/publish.js major",
    "release": "node scripts/publish.js patch",
    "demo": "cd demo && python -m http.server 8080"
  },
  "keywords": [
    "ai",
    "function-calling",
    "embeddings",
    "semantic-search",
    "nlp",
    "transformers",
    "natural-language",
    "intent-recognition",
    "parameter-extraction",
    "confidence-scoring"
  ],
  "author": "Trent Brew <hello@trentbrew.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/trentbrew/homeschool.git"
  },
  "bugs": {
    "url": "https://github.com/trentbrew/homeschool/issues"
  },
  "homepage": "https://github.com/trentbrew/homeschool#readme",
  "peerDependencies": {
    "@xenova/transformers": "^2.6.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.4",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-typescript": "^11.1.4",
    "@types/jest": "^29.5.5",
    "@typescript-eslint/eslint-plugin": "^6.7.0",
    "@typescript-eslint/parser": "^6.7.0",
    "eslint": "^8.49.0",
    "jest": "^29.7.0",
    "rollup": "^3.29.5",
    "rollup-plugin-dts": "^6.0.2",
    "ts-jest": "^29.1.1",
    "tslib": "^2.8.1",
    "typescript": "^5.2.2"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}
