{
  "name": "@contextvm/elo",
  "version": "0.10.4",
  "description": "A small expression language that compiles to JavaScript (JS-only fork)",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "files": [
    "dist/src"
  ],
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "bun run test:unit",
    "test:unit": "bun test test/unit/",
    "test:watch": "tsc --watch & bun test --watch test/unit/",
    "docker:up": "docker compose up -d",
    "docker:down": "docker compose down",
    "docker:logs": "docker compose logs -f",
    "format": "prettier --write .",
    "release": "bun run build && bun publish"
  },
  "keywords": [
    "compiler",
    "expression",
    "multi-target"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/enspirit/elo.git"
  },
  "homepage": "https://elo-lang.org",
  "bugs": {
    "url": "https://github.com/enspirit/elo/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "luxon": "^3.7.2",
    "prettier": "^3.8.1"
  },
  "devDependencies": {
    "@codemirror/autocomplete": "^6.20.1",
    "@codemirror/commands": "^6.10.3",
    "@codemirror/language": "^6.12.3",
    "@codemirror/state": "^6.6.0",
    "@codemirror/view": "^6.40.0",
    "@hotwired/stimulus": "^3.2.2",
    "@lezer/highlight": "^1.2.3",
    "@types/luxon": "^3.7.1",
    "@types/node": "^20.19.37",
    "@types/pg": "^8.20.0",
    "codemirror": "^6.0.2",
    "esbuild": "^0.27.4",
    "pg": "^8.20.0",
    "typescript": "^5.9.3"
  }
}
