{
  "name": "@vorms/core",
  "version": "1.1.0",
  "description": "Vue Form Validation with Composition API",
  "source": "src/index.ts",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.esm.mjs",
      "require": "./dist/index.cjs.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "esno scripts/build.ts",
    "build:rollup": "rollup -c",
    "clean": "rimraf dist",
    "dev": "pnpm build:rollup -- -w",
    "publish:ci": "esno scripts/publish.ts"
  },
  "license": "MIT",
  "author": "Alex Liu <dsa1314@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mini-ghost/vorms.git",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/mini-ghost/vorms/issues"
  },
  "homepage": "https://github.com/mini-ghost/vorms#readme",
  "keywords": [
    "vue",
    "composition-api",
    "form",
    "validate"
  ],
  "peerDependencies": {
    "vue": "^3.0.0"
  },
  "dependencies": {
    "deepmerge": "^4.3.0",
    "fast-deep-equal": "^3.1.3",
    "klona": "^2.0.6"
  }
}
