{
  "name": "@ball-lang/engine",
  "version": "1.59.8",
  "description": "Ball language engine — interprets Ball programs in TypeScript/JavaScript. Runs in Node.js and browsers.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "sideEffects": false,
  "scripts": {
    "build": "tsc",
    "test": "node --experimental-strip-types test/engine_test.ts && node --experimental-strip-types --test test/*.test.ts",
    "coverage": "c8 --reporter=text --reporter=lcov --include \"src/**\" --exclude \"src/compiled_engine.ts\" --check-coverage --lines 99 --branches 97 --functions 97 --statements 99 npm test",
    "prepublishOnly": "npm run build",
    "prepack": "npm run build"
  },
  "keywords": [
    "ball",
    "interpreter",
    "polyglot",
    "protobuf",
    "programming-language",
    "tree-walking",
    "engine",
    "cross-language",
    "code-as-data"
  ],
  "license": "MIT",
  "author": "Ball-Lang <ahmednfwela@bdaya-dev.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ball-Lang/ball.git",
    "directory": "ts/engine"
  },
  "homepage": "https://github.com/ball-lang/ball/tree/main/ts/engine#readme",
  "bugs": {
    "url": "https://github.com/ball-lang/ball/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "devDependencies": {
    "@types/node": "^26.0.1",
    "c8": "^11.0.0",
    "typescript": "^6.0.2"
  }
}
