{
  "name": "exscript-lang",
  "version": "0.1.0",
  "description": "EX Script compiler \u2014 a modern, safer, faster-to-develop alternative to TypeScript. ex build/run/test/check CLI.",
  "type": "module",
  "license": "MIT",
  "bin": {
    "ex": "bin/ex.js"
  },
  "scripts": {
    "build": "tsc",
    "watch": "tsc -w",
    "test": "npm run build && npx tsx src/tests/smoke1.ts && npx tsx src/tests/smoke2.ts",
    "smoke": "node bin/ex.js run examples/hello"
  },
  "engines": {
    "node": ">=20"
  },
  "devDependencies": {
    "@types/node": "^20.11.0",
    "typescript": "^5.4.0"
  },
  "dependencies": {
    "esbuild": "^0.28.2"
  }
}
