{
  "name": "@relational-fabric/filament",
  "type": "module",
  "version": "0.0.6",
  "private": false,
  "description": "Core types and utilities for Relational Fabric",
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsc --build",
    "dev": "tsc --watch",
    "clean": "rm -rf dist tsconfig.tsbuildinfo",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "deploy": "npm publish --access public"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "*",
    "typescript": "^5.8.3",
    "vitest": "*"
  }
}
