{
  "name": "@dreamonkey/vue-lx-forms",
  "version": "0.0.3",
  "type": "module",
  "description": "Builder for highly reactive forms following a bring-your-components approach. Based on Vue reactivity, full TypeScript support",
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "exports": "./dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/dreamonkey/vue-lx-forms"
  },
  "keywords": [
    "vue",
    "typescript",
    "form",
    "forms",
    "reactive",
    "components",
    "helix",
    "lx",
    "dynamic"
  ],
  "author": "Paolo Caleffi <p.caleffi@dreamonkey.com> (https://github.com/IlCallo)",
  "license": "MIT",
  "bugs": "https://github.com/dreamonkey/vue-lx-forms/issues",
  "homepage": "https://github.com/dreamonkey/vue-lx-forms#readme",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "es-toolkit": "^1.43.0"
  },
  "devDependencies": {
    "@babel/types": "^7.28.5",
    "copyfiles": "^2.4.1",
    "eslint": "^9.39.1",
    "eslint-config-coralloy": "^0.7.1",
    "prettier": "^3.7.4",
    "rimraf": "^6.1.2",
    "typescript": "^5.9.3",
    "vue": "^3.5.25"
  },
  "peerDependencies": {
    "vue": "^3.0.0"
  },
  "engines": {
    "node": "^22.18"
  },
  "scripts": {
    "lint": "eslint --cache --fix",
    "format": "prettier --write \"**/*.{json,md,graphql,vue,js,ts}\" --ignore-path .gitignore",
    "build": "rimraf dist && tsc --declaration && copyfiles -f src/resolver.vue dist",
    "deploy": "pnpm build && pnpm publish --tag latest"
  }
}