{
  "name": "@fink/loxia",
  "keywords": [
    "fink",
    "fink-lang",
    "compiler"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=14.13.0"
  },
  "type": "module",
  "exports": {
    "./*": {
      "import": "./*",
      "require": "./cjs/*"
    }
  },
  "version": "24.1.2",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:fink-lang/loxia"
  },
  "bugs": "https://github.com/fink-lang/loxia/issues",
  "homepage": "https://github.com/fink-lang/loxia",
  "scripts": {
    "default": "run clean test build",
    "clean": "rimraf ./build",
    "build": "run build:*",
    "build:dir": "mkdir -p ./build/pkg/",
    "build:fnk-esm": "fnk --module-type esm --src ./src --out-dir ./build/pkg --ignore '**/*.test.fnk'",
    "build:fnk-cjs": "fnk --module-type cjs --src ./src --out-dir ./build/pkg/cjs --ignore '**/*.test.fnk'",
    "build:files-cjs": "cp package-cjs.json ./build/pkg/cjs/package.json",
    "build:files": "cp package.json ./README.md ./LICENSE ./build/pkg/",
    "test": "run jest",
    "jest": "jest --verbose --runInBand --no-cache ",
    "cd": "run clean test build release",
    "release": "semantic-release --debug"
  },
  "devDependencies": {
    "@fink/cli": "^8.0.0",
    "@fink/jest": "^7.2.0",
    "@fink/larix": "^20.0.0",
    "@fink/loxia": "^24.0.0",
    "commitizen": "^4.1.2",
    "cz-conventional-changelog": "^3.1.0",
    "jest-cli": "^27.0.0",
    "npx-run": "^2.1.2",
    "semantic-release": "^18.0.0"
  },
  "peerDependencies": {
    "@fink/js-interop": ">=2.5"
  },
  "dependencies": {
    "@babel/core": "^7.10.5",
    "@babel/traverse": "^7.10.5",
    "@babel/types": "^7.10.5",
    "@fink/js-interop": ">=2.5",
    "@fink/snippet": "^2.2.0",
    "@fink/std-lib": "^8.5.0",
    "hamt": "^2.2.2"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
