{
  "name": "pure-parse",
  "version": "1.0.3",
  "description": "Strongly typed validation library that decouples type aliases from validation logic",
  "author": {
    "name": "Johannes Lindgren"
  },
  "homepage": "https://pureparse.dev/",
  "repository": {
    "type": "git",
    "url": "https://github.com/johannes-lindgren/pure-parse"
  },
  "bugs": {
    "url": "https://github.com/johannes-lindgren/pure-parse/issues"
  },
  "keywords": [
    "typescript",
    "schema",
    "validation",
    "parsing",
    "type",
    "inference",
    "CRDT",
    "composable",
    "fast",
    "declarative",
    "functional"
  ],
  "license": "MIT",
  "sideEffects": false,
  "files": [
    "dist",
    "logo.webp"
  ],
  "type": "module",
  "module": "./dist/index.js",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "scripts": {
    "dev": "vite build --watch",
    "build": "tsc && vite build",
    "preview": "vite preview",
    "test": "vitest",
    "check:types": "tsc",
    "check:circular-dependencies": "dpdm  -T --exit-code circular:1 ./src/index.ts",
    "predocs:build": "typedoc",
    "predocs:watch": "typedoc --watch",
    "docs:dev": "typedoc && (typedoc --watch & vitepress dev)",
    "docs:build": "typedoc && vitepress build",
    "docs:preview": "vitepress preview",
    "analyze": "vite-bundle-visualizer"
  },
  "workspaces": [
    "packages/*"
  ],
  "devDependencies": {
    "@egjs/flicking-plugins": "4.7.1",
    "@egjs/vue3-flicking": "4.11.4",
    "dpdm": "3.14.0",
    "highlight.js": "11.10.0",
    "sass-embedded": "1.79.4",
    "typedoc": "0.26.8",
    "typedoc-plugin-markdown": "4.2.9",
    "typedoc-vitepress-theme": "1.0.2",
    "typescript": "5.5.4",
    "vite": "8.0.11",
    "vite-bundle-visualizer": "1.2.1",
    "vite-plugin-dts": "4.2.3",
    "vitepress": "1.6.4",
    "vitest": "4.1.5"
  }
}
