{
  "name": "@usecarte/core",
  "version": "0.1.0",
  "description": "Framework-agnostic core for Carte: typed query carte, plan schema, validation, prompt generation.",
  "keywords": [
    "carte",
    "llm",
    "ai",
    "agent",
    "agentic",
    "database",
    "sql",
    "typed-queries",
    "zod",
    "drizzle",
    "rbac",
    "schema-free"
  ],
  "license": "MIT",
  "author": "Jacob Cable",
  "homepage": "https://github.com/cabljac/carte#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cabljac/carte.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/cabljac/carte/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./drizzle": {
      "types": "./dist/drizzle.d.ts",
      "import": "./dist/drizzle.js"
    }
  },
  "files": [
    "dist",
    "src",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "clean": "rm -rf dist",
    "test": "vitest run",
    "prepublishOnly": "pnpm clean && pnpm build"
  },
  "dependencies": {
    "zod": "^4.4.2"
  },
  "peerDependencies": {
    "drizzle-orm": ">=0.30.0"
  },
  "peerDependenciesMeta": {
    "drizzle-orm": {
      "optional": true
    }
  },
  "devDependencies": {
    "drizzle-orm": "^0.44.0",
    "typescript": "^5.7.0"
  }
}
