{
  "name": "pinecone-client",
  "version": "2.0.0",
  "description": "Pinecone.io client powered by fetch",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "repository": "dexaai/pinecone-client",
  "author": {
    "name": "Riley Tomasek",
    "email": "hi@rile.yt",
    "url": "https://rile.yt"
  },
  "scripts": {
    "build": "rm -rf dist && tsc --project tsconfig.dist.json",
    "clean": "rm -rf dist node_modules",
    "format": "prettier --write src test",
    "lint": "eslint src",
    "prepare": "yarn build",
    "prepublishOnly": "yarn lint && yarn typecheck",
    "release": "np",
    "test:e2e": "tsx ./test/run-tests.ts",
    "typecheck": "tsc"
  },
  "license": "MIT",
  "private": false,
  "dependencies": {
    "ky": "^1.1.0"
  },
  "devDependencies": {
    "@types/node": "^20.8.7",
    "eslint": "^8.52.0",
    "eslint-config-hckrs": "^0.0.4",
    "np": "^8.0.4",
    "prettier": "^3.0.3",
    "tsx": "^3.14.0",
    "type-fest": "^4.5.0",
    "typescript": "^5.2.2"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "prettier": {
    "singleQuote": true
  },
  "engines": {
    "node": ">=18"
  }
}
