{
  "name": "@tanstack/form-core",
  "version": "1.27.7",
  "description": "Powerful, type-safe, framework agnostic forms.",
  "author": "tannerlinsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/form.git",
    "directory": "packages/form-core"
  },
  "homepage": "https://tanstack.com/form",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "type": "module",
  "types": "dist/esm/index.d.ts",
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.cts",
        "default": "./dist/cjs/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@tanstack/devtools-event-client": "^0.4.0",
    "@tanstack/pacer-lite": "^0.1.1",
    "@tanstack/store": "^0.7.7"
  },
  "devDependencies": {
    "arktype": "^2.1.22",
    "valibot": "^1.1.0",
    "zod": "^3.25.76"
  },
  "scripts": {
    "clean": "premove ./dist ./coverage",
    "test:eslint": "eslint ./src ./tests",
    "test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
    "test:types:ts54": "node ../../node_modules/typescript54/lib/tsc.js",
    "test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
    "test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js",
    "test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js",
    "test:types:ts58": "tsc",
    "test:lib": "vitest",
    "test:lib:dev": "pnpm run test:lib --watch",
    "test:build": "publint --strict",
    "build": "vite build"
  }
}