{
  "name": "@stonecrop/aform",
  "version": "0.33.0",
  "description": "Schema-driven form components for Stonecrop",
  "keywords": [
    "components",
    "forms",
    "schema",
    "stonecrop",
    "vue"
  ],
  "homepage": "https://github.com/agritheory/stonecrop#readme",
  "bugs": {
    "url": "https://github.com/agritheory/stonecrop/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Tyler Matteson",
    "email": "tyler@agritheory.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/agritheory/stonecrop",
    "directory": "aform"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": [
    "**/*.css"
  ],
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/aform.js"
    },
    "./styles": "./dist/assets/index.css",
    "./types": "./dist/src/types/index.d.ts",
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@vueuse/components": "^14.2.1",
    "@vueuse/core": "^14.2.1",
    "@stonecrop/themes": "0.33.0",
    "@stonecrop/atable": "0.33.0",
    "@stonecrop/utilities": "0.33.0",
    "@stonecrop/schema": "0.33.0"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.58.7",
    "@types/node": "^24.12.4",
    "@vitejs/plugin-vue": "^6.0.6",
    "@vitest/coverage-istanbul": "^4.1.5",
    "@vitest/ui": "^4.1.5",
    "@vue/test-utils": "^2.4.10",
    "jsdom": "^29.1.1",
    "oxlint": "1.67.0",
    "oxlint-tsgolint": "0.23.0",
    "pinia": "^3.0.4",
    "typescript": "^6.0.3",
    "vite": "^8.2.2",
    "vite-plugin-lib-inject-css": "^2.2.2",
    "vitest": "^4.1.5",
    "vue": "^3.5.33",
    "vue-component-meta": "^3.3.11",
    "vue-router": "^5.0.6",
    "vue-tsc": "^3.3.6"
  },
  "peerDependencies": {
    "pinia": "^3.0.4",
    "vue": "^3.5.33"
  },
  "engines": {
    "node": ">=24.0.0"
  },
  "scripts": {
    "dev": "vite build --watch",
    "docs": "bash ../tools/scripts/run-docs.sh aform",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "preview": "vite preview",
    "test": "vitest run --coverage.enabled false",
    "test:coverage": "vitest run --coverage",
    "test:types": "vue-tsc --noEmit -p tsconfig.typecheck.json",
    "test:ui": "vitest --ui",
    "test:watch": "vitest watch"
  }
}