{
  "name": "@nuxt-ignis/validation",
  "version": "0.1.0",
  "type": "module",
  "description": "Nuxt Ignis module - Validation features",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AloisSeckar/nuxt-ignis.git"
  },
  "license": "MIT",
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    }
  },
  "main": "./dist/module.mjs",
  "typesVersions": {
    "*": {
      ".": [
        "./dist/types.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "workspaces": [
    "playground"
  ],
  "dependencies": {
    "@nuxt/kit": "4.4.7",
    "valibot": "1.4.0",
    "zod": "4.4.3"
  },
  "devDependencies": {
    "@nuxt/devtools": "^4.0.0-alpha.4",
    "@nuxt/eslint-config": "1.15.2",
    "@nuxt/module-builder": "^1.0.2",
    "@nuxt/schema": "4.4.7",
    "@nuxt/test-utils": "^4.0.3",
    "@types/node": "^25.7.0",
    "changelogen": "^0.6.2",
    "eslint": "^9.39.4",
    "nuxt": "4.4.7",
    "typescript": "6.0.3",
    "vitest": "^4.1.8",
    "vue-tsc": "^3.2.9"
  },
  "scripts": {
    "dev": "pnpm run dev:prepare && nuxt dev playground",
    "dev:build": "nuxt build playground",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
    "release": "pnpm run lint && pnpm run test && pnpm run prepack && changelogen --release && pnpm publish && git push --follow-tags",
    "lint": "eslint .",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
  }
}