{
  "name": "@objectstack/formula",
  "version": "17.4.0",
  "license": "Apache-2.0",
  "description": "ObjectStack canonical expression engine — CEL (cel-js) + ObjectStack stdlib + dialect registry",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "dependencies": {
    "@marcbachmann/cel-js": "^8.0.0",
    "@objectstack/spec": "17.4.0"
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "keywords": [
    "objectstack",
    "formula",
    "expression",
    "cel",
    "predicate"
  ],
  "author": "ObjectStack",
  "repository": {
    "type": "git",
    "url": "https://github.com/objectstack-ai/objectstack.git",
    "directory": "packages/formula"
  },
  "homepage": "https://objectstack.ai/docs",
  "bugs": "https://github.com/objectstack-ai/objectstack/issues",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsup --config ../../tsup.config.ts && node ../../scripts/check-dts-emitted.mjs",
    "check:test-typecheck": "tsx ../../scripts/check-test-typecheck.mts --self-test && tsx ../../scripts/check-test-typecheck.mts --package packages/formula --project tsconfig.test.json",
    "gen:test-typecheck-debt": "tsx ../../scripts/check-test-typecheck.mts --update --package packages/formula --project tsconfig.test.json",
    "test": "vitest run",
    "typecheck": "tsc --noEmit && pnpm check:test-typecheck"
  }
}