{
  "name": "@vinejs/compiler",
  "version": "2.5.0",
  "description": "Low level compiler for VineJS validator",
  "type": "module",
  "main": "build/index.js",
  "files": [
    "build",
    "!build/benchmarks",
    "!build/bin",
    "!build/examples",
    "!build/factories",
    "!build/tests"
  ],
  "exports": {
    ".": "./build/index.js",
    "./types": "./build/src/types.js"
  },
  "scripts": {
    "pretest": "npm run lint",
    "test": "c8 npm run quick:test",
    "quick:test": "node --loader=ts-node/esm bin/test.ts",
    "clean": "del-cli build",
    "typecheck": "tsc --noEmit",
    "precompile": "npm run lint && npm run clean",
    "compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
    "build": "npm run compile",
    "release": "np",
    "version": "npm run build",
    "prepublishOnly": "npm run build",
    "lint": "eslint . --ext=.ts",
    "format": "prettier --write .",
    "sync-labels": "github-label-sync --labels .github/labels.json vinejs/compiler"
  },
  "keywords": [
    "vinejs",
    "compiler",
    "validator"
  ],
  "author": "virk,vinejs",
  "license": "MIT",
  "devDependencies": {
    "@adonisjs/eslint-config": "^1.3.0",
    "@adonisjs/prettier-config": "^1.3.0",
    "@adonisjs/tsconfig": "^1.3.0",
    "@japa/assert": "^2.1.0",
    "@japa/runner": "^3.1.1",
    "@swc/core": "^1.4.11",
    "@types/node": "^20.11.30",
    "acorn": "^8.11.3",
    "ajv": "^8.12.0",
    "benchmark": "^2.1.4",
    "c8": "^9.1.0",
    "del-cli": "^5.1.0",
    "eslint": "^8.57.0",
    "github-label-sync": "^2.3.1",
    "js-beautify": "^1.15.1",
    "np": "^10.0.2",
    "prettier": "^3.2.5",
    "tinybench": "^2.6.0",
    "ts-node": "^10.9.2",
    "tsup": "^8.0.2",
    "typescript": "^5.4.3",
    "zod": "^3.22.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vinejs/compiler.git"
  },
  "bugs": {
    "url": "https://github.com/vinejs/compiler/issues"
  },
  "homepage": "https://github.com/vinejs/compiler#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "np": {
    "message": "chore(release): %s",
    "tag": "latest",
    "branch": "main",
    "anyBranch": false
  },
  "c8": {
    "reporter": [
      "text",
      "html"
    ],
    "exclude": [
      "tests/**",
      "bin/**",
      "factories/**"
    ]
  },
  "eslintConfig": {
    "extends": "@adonisjs/eslint-config/package"
  },
  "prettier": "@adonisjs/prettier-config",
  "tsup": {
    "entry": [
      "./index.ts",
      "./src/types.ts"
    ],
    "outDir": "./build",
    "clean": true,
    "format": "esm",
    "dts": false,
    "sourcemap": true,
    "target": "esnext"
  }
}
