{
  "name": "@tursodatabase/api",
  "description": "The Turso API gives you everything needed to manage your organization and it's members, groups, databases, and API tokens.",
  "version": "2.0.4",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tursodatabase/turso-api-client-ts.git"
  },
  "keywords": [
    "turso",
    "tursodatabase",
    "sqlite",
    "api-client"
  ],
  "contributors": [
    "Jamie Barton <jamie@notrab.dev>"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch --clean=false",
    "test": "vitest",
    "test:watch": "vitest watch"
  },
  "devDependencies": {
    "@types/node": "^20.10.5",
    "tsup": "^8.0.1",
    "typescript": "^5.3.2",
    "vitest": "^1.0.4"
  },
  "tsup": {
    "entry": [
      "src/index.ts"
    ],
    "splitting": true,
    "sourcemap": true,
    "clean": true,
    "dts": true,
    "format": [
      "esm",
      "cjs"
    ],
    "skipNodeModulesBundle": true,
    "externals": [
      "node_modules"
    ]
  },
  "dependencies": {
    "whatwg-fetch": "^3.6.19"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": {
        "node": "./dist/index.js",
        "default": "./dist/index.js"
      },
      "require": {
        "node": "./dist/index.cjs",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  }
}
