{
  "show-config": "tsc --showConfig",
  "name": "@getzep/zep-js",
  "version": "0.9.0",
  "description": "Zep: Fast, scalable building blocks for production LLM apps",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "lint": "eslint --ext .js,.ts src/",
    "build": "npm run lint && tsc && tsc --module ESNext --outDir dist/esm",
    "start": "node dist/index.js",
    "dev": "ts-node src/main.ts",
    "clean": "rm -rf dist/*",
    "format": "eslint --fix 'src/**/*.{js,ts}' && prettier --write 'src/**/*.{js,ts,json}'",
    "prepublishOnly": "npm run clean && npm run build && npm run test && npm run docbuild",
    "prepare": "npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "docbuild": "typedoc --out docs/ --excludePrivate --excludeInternal --excludeExternals src/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/getzep/zep-js/"
  },
  "keywords": [
    "zep",
    "vectors",
    "llm",
    "embeddings"
  ],
  "author": "Daniel Chalef <daniel@getzep.com>",
  "license": "Apache-2.0",
  "dependencies": {
    "@supercharge/promise-pool": "^3.1.0",
    "semver": "^7.5.4",
    "typescript": "^5.1.6"
  },
  "devDependencies": {
    "@faker-js/faker": "^8.2.0",
    "@types/jest": "^29.5.7",
    "@types/node": "^20.8.9",
    "@types/uuid": "^9.0.6",
    "@typescript-eslint/eslint-plugin": "^6.9.1",
    "@typescript-eslint/parser": "^6.9.1",
    "dotenv": "^16.3.1",
    "eslint": "^8.52.0",
    "eslint-config-airbnb-base": "15.0.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.29.0",
    "eslint-plugin-prettier": "^5.0.1",
    "jest": "^29.6.2",
    "jest-fetch-mock": "^3.0.3",
    "jsdoc": "^4.0.2",
    "prettier": "^3.0.3",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typedoc": "^0.24.8",
    "uuid": "^9.0.0"
  },
  "files": [
    "dist"
  ],
  "jest": {
    "preset": "ts-jest/presets/default-esm",
    "testEnvironment": "node",
    "modulePathIgnorePatterns": [
      "dist/",
      "docs/"
    ],
    "testMatch": [
      "**/src/tests/**/*.ts?(x)",
      "!**/?(*.)+(spec|test).js"
    ],
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    },
    "transform": {
      "^.+\\.m?[tj]sx?$": [
        "ts-jest",
        {
          "useESM": true
        }
      ]
    },
    "setupFiles": [
      "dotenv/config",
      "./__tests__/setup/setupJest.js"
    ],
    "testTimeout": 20000,
    "transformIgnorePatterns": [
      "/node_modules/",
      "^.+\\.js$"
    ]
  }
}
