{
  "name": "@jorvel/types",
  "version": "0.3.0",
  "description": "Shared TypeScript types and runtime helpers for JORVEL configs, plugins, and federation contracts.",
  "license": "MIT",
  "homepage": "https://github.com/Ravikisha/JorvelJS#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/Ravikisha/JorvelJS.git",
    "directory": "libs/types"
  },
  "keywords": [
    "jorvel",
    "module-federation",
    "types",
    "config"
  ],
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/contract-test.d.ts",
      "import": "./dist/contract-test.js"
    },
    "./schemas/jorvel.config.json": "./schemas/jorvel.config.json",
    "./schemas/jorvel.app.json": "./schemas/jorvel.app.json",
    "./schemas/jorvel.federation.json": "./schemas/jorvel.federation.json",
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "schemas",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "devDependencies": {
    "typescript": "^5.7.3",
    "vitest": "^2.1.9"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "typecheck:tests": "tsc -p tsconfig.test.json --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage"
  }
}