{
  "name": "@graphdl/core",
  "version": "0.4.0",
  "description": "Pure TypeScript DSL for defining entity graphs with noun/verb semantics and relationship operators",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./ids": {
      "import": "./dist/ids/index.js",
      "types": "./dist/ids/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ai-primitives/primitives.org.ai.git",
    "directory": "packages/graphdl"
  },
  "homepage": "https://graphdl.org",
  "bugs": {
    "url": "https://github.com/ai-primitives/primitives.org.ai/issues"
  },
  "author": "Nathan Clevenger",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "dev": "tsc -p tsconfig.json --watch",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "clean": "rm -rf dist"
  },
  "devDependencies": {
    "vitest": "3.0.4"
  },
  "keywords": [
    "graphdl",
    "schema",
    "dsl",
    "entity",
    "graph",
    "typescript",
    "noun",
    "verb",
    "relationships",
    "ai",
    "mdxld",
    "json-ld"
  ],
  "engines": {
    "node": ">=18"
  },
  "license": "MIT"
}
