{
  "name": "graphenix-format",
  "version": "1.4.0",
  "description": "Graphenix graph description format: JSON schema, validation, and CRUD helpers.",
  "license": "MIT",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
    "clean": "rimraf dist",
    "lint": "echo \"no lint configured\"",
    "prepare": "npm run build",
    "test": "node ./dist/examples/validate-minimal.js"
  },
  "files": [
    "dist",
    "schema",
    "docs"
  ],
  "keywords": [
    "graph",
    "workflow",
    "json-schema",
    "validation",
    "graphenix"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://example.com/graphenix-format.git"
  },
  "bugs": {
    "url": "https://example.com/graphenix-format/issues"
  },
  "homepage": "https://example.com/graphenix-format#readme",
  "dependencies": {
    "ajv": "^8.17.1"
  },
  "devDependencies": {
    "@types/node": "^22.10.1",
    "rimraf": "^6.0.1",
    "typescript": "^5.6.3"
  }
}

