{
  "name": "@syndicate-lang/compiler",
  "version": "1.0.0-rc.2",
  "description": "Syndicate/JS compiler library",
  "author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
  "homepage": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js/src/branch/main/packages/compiler",
  "license": "GPL-3.0+",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
  },
  "scripts": {
    "prepare": "yarn compile && yarn bundle && cp syndicate-browser-compiler.js dist/",
    "compile": "../../node_modules/.bin/tsc",
    "compile:watch": "../../node_modules/.bin/tsc -w",
    "bundle": "tsup",
    "bundle:watch": "tsup --watch",
    "clean": "rm -rf lib dist",
    "veryclean": "yarn run clean && rm -rf node_modules",
    "test": "vitest --no-watch",
    "test:watch": "vitest --watch"
  },
  "devDependencies": {
    "@types/js-beautify": "1.14",
    "js-beautify": "1.15"
  },
  "main": "dist/syndicate-compiler.cjs",
  "module": "dist/syndicate-compiler.mjs",
  "browser": "dist/syndicate-compiler.js",
  "types": "lib/index.d.ts",
  "exports": {
    "import": "./dist/syndicate-compiler.mjs",
    "require": "./dist/syndicate-compiler.cjs"
  },
  "gitHead": "3e17df1c9a88a3f53992932f9e18cb80ef35a3c1"
}
