{
  "name": "sveltekit-superforms",
  "version": "1.5.1",
  "author": "Andreas Söderlund <ciscoheat@gmail.com> (https://blog.encodeart.dev)",
  "description": "Making SvelteKit validation and displaying of forms easier than ever!",
  "keywords": [
    "sveltekit",
    "svelte",
    "form",
    "validation",
    "zod",
    "forms"
  ],
  "license": "MIT",
  "homepage": "https://superforms.rocks",
  "bugs": "https://github.com/ciscoheat/sveltekit-superforms/issues",
  "repository": {
    "url": "https://github.com/ciscoheat/sveltekit-superforms"
  },
  "funding": [
    {
      "type": "github",
      "url": "https://github.com/sponsors/ciscoheat"
    },
    {
      "type": "ko-fi",
      "url": "https://ko-fi.com/ciscoheat"
    },
    {
      "type": "paypal",
      "url": "https://www.paypal.com/donate/?hosted_button_id=NY7F5ALHHSVQS"
    }
  ],
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "svelte": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "svelte": "./dist/client/index.js"
    },
    "./client/SuperDebug.svelte": {
      "types": "./dist/client/SuperDebug.svelte.d.ts",
      "svelte": "./dist/client/SuperDebug.svelte"
    },
    "./server": {
      "types": "./dist/server/index.d.ts",
      "svelte": "./dist/server/index.js"
    }
  },
  "typesVersions": {
    ">4.0": {
      "index.d.ts": [
        "./dist/index.d.ts"
      ],
      "server": [
        "./dist/server/index.d.ts"
      ],
      "client": [
        "./dist/client/index.d.ts"
      ],
      "client/SuperDebug.svelte": [
        "./dist/client/SuperDebug.svelte.d.ts"
      ]
    }
  },
  "svelte": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "peerDependencies": {
    "@sveltejs/kit": "1.x",
    "svelte": "3.x || 4.x",
    "zod": "3.x"
  },
  "devDependencies": {
    "@sveltejs/adapter-auto": "^2.1.0",
    "@sveltejs/kit": "^1.22.4",
    "@sveltejs/package": "^2.2.0",
    "@types/throttle-debounce": "^5.0.0",
    "@typescript-eslint/eslint-plugin": "^5.62.0",
    "@typescript-eslint/parser": "^5.62.0",
    "devalue": "^4.3.2",
    "eslint": "^8.46.0",
    "eslint-config-prettier": "^8.10.0",
    "eslint-plugin-dci-lint": "^0.3.0",
    "eslint-plugin-svelte": "^2.32.4",
    "prettier": "^2.8.8",
    "prettier-plugin-svelte": "^2.10.1",
    "publint": "^0.1.16",
    "sass": "^1.64.2",
    "slugify": "^1.6.6",
    "svelte": "^4.1.2",
    "svelte-check": "^3.4.6",
    "sveltekit-flash-message": "^2.1.3",
    "sveltekit-rate-limiter": "^0.3.2",
    "throttle-debounce": "^5.0.0",
    "tslib": "^2.6.1",
    "typescript": "^5.1.6",
    "vite": "^4.4.9",
    "vitest": "^0.33.0",
    "zod": "^3.21.4"
  },
  "type": "module",
  "scripts": {
    "dev": "vite dev --open",
    "build": "vite build && npm run test && npm run package",
    "preview": "vite preview",
    "package": "svelte-kit sync && svelte-package && publint",
    "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
    "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
    "test:unit": "vitest",
    "test": "vitest run",
    "lint": "prettier --plugin-search-dir . --check . && eslint .",
    "format": "prettier --plugin-search-dir . --write ."
  }
}