{
  "name": "@finsys/core",
  "version": "9.3.0",
  "description": "Convert unified form configurations into Zod schemas, React Hook Form defaults, and SurveyJS JSON",
  "repository": {
    "type": "git",
    "url": "https://github.com/ExtraGalaxies/finsys-core.git"
  },
  "homepage": "https://github.com/ExtraGalaxies/finsys-core#readme",
  "bugs": {
    "url": "https://github.com/ExtraGalaxies/finsys-core/issues"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./schema": {
      "import": "./dist/schema/unified-form.schema.json",
      "require": "./dist/schema/unified-form.schema.json"
    },
    "./schema/adapter-manifest": {
      "types": "./dist/schema/adapter-manifest.schema.json",
      "import": "./dist/schema/adapter-manifest.schema.json",
      "require": "./dist/schema/adapter-manifest.schema.json"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "NOTICE"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "gen:vocabulary": "node scripts/gen-vocabulary.mjs",
    "lint": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "test": "vitest run",
    "test:consumer": "bash scripts/check-consumer-typecheck.sh"
  },
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "semver": "^7.7.3",
    "zod": "^4.3.5"
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "@types/semver": "^7.5.0",
    "tsup": "^8.5.1",
    "typescript": "^5.4.0",
    "vitest": "^4.0.18"
  },
  "keywords": [
    "form-generator",
    "zod",
    "react-hook-form",
    "surveyjs",
    "form-config",
    "multi-step-form",
    "form-validation",
    "json-schema",
    "finsys"
  ],
  "license": "Apache-2.0",
  "engines": {
    "node": ">=24.16.0",
    "npm": ">=12.0.1"
  },
  "allowScripts": {
    "esbuild": false,
    "fsevents": false
  }
}
