{
  "name": "@velarscript/compiler",
  "version": "0.34.0",
  "description": "The compiler and semantic authority for VelarScript Core and explicit compiler extensions.",
  "license": "Apache-2.0",
  "type": "module",
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "clean": "node ../../scripts/clean-package-dist.mjs",
    "build": "npm run clean && tsc -p tsconfig.build.json",
    "prepack": "npm run build"
  },
  "engines": {
    "node": ">=24"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/VelarOS-AI/VelarScript.git",
    "directory": "packages/compiler"
  },
  "dependencies": {
    "acorn": "^8.18.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./extension": {
      "types": "./dist/extension.d.ts",
      "default": "./dist/extension.js"
    },
    "./framework-host": {
      "types": "./dist/framework-host.d.ts",
      "default": "./dist/framework-host.js"
    },
    "./application-package-host": {
      "types": "./dist/application-package-host.d.ts",
      "default": "./dist/application-package-host.js"
    }
  }
}
