{
  "name": "@rcrsr/rill",
  "version": "0.21.0",
  "description": "Scripting designed for machine-generated code",
  "license": "MIT",
  "author": "Andre Bremer",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "keywords": [
    "rill",
    "scripting",
    "parser",
    "runtime",
    "pipes",
    "machine-generated"
  ],
  "files": [
    "dist",
    "docs"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rcrsr/rill.git",
    "directory": "packages/core"
  },
  "homepage": "https://rill.run",
  "bugs": {
    "url": "https://github.com/rcrsr/rill/issues"
  },
  "engines": {
    "node": ">=22.16.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsx scripts/generate-version.ts && tsx scripts/generate-docs-bundle.ts && tsc --build",
    "build:dev": "tsx scripts/generate-version.ts && tsx scripts/generate-docs-bundle.ts && tsc --build tsconfig.dev.json",
    "pretest": "tsx scripts/generate-version.ts",
    "test": "vitest run",
    "test:examples": "tsx ../../scripts/test-examples.ts ../../docs/ ../../README.md",
    "typecheck": "tsc --noEmit",
    "lint": "oxlint --config ../../.oxlintrc.json src/ tests/",
    "docs:errors": "tsx scripts/generate-error-docs.ts",
    "docs:llms-full": "tsx scripts/generate-llms-full.ts",
    "check": "pnpm run build && pnpm run test && pnpm run test:examples && pnpm run lint"
  }
}