{
  "name": "@jalik/hal",
  "version": "1.0.1",
  "description": "Hypertext Application Language toolbox",
  "license": "MIT",
  "keywords": [
    "hal",
    "hypertext",
    "language",
    "json",
    "api",
    "rest"
  ],
  "author": {
    "name": "Karl Stein",
    "email": "karl.stein.pro@gmail.com",
    "url": "https://github.com/jalik"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jalik/js-hal.git"
  },
  "bugs": {
    "url": "https://github.com/jalik/js-hal/issues"
  },
  "sideEffects": false,
  "esnext": "esm/index.js",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "files": [
    "/cjs",
    "/esm"
  ],
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "build": "npm run build-cjs && npm run build-esm",
    "build-cjs": "tsc -p tsconfig.cjs.json",
    "build-esm": "tsc",
    "clean": "rimraf ./cjs ./esm",
    "dev-cjs": "tsc --watch -p tsconfig.cjs.json",
    "dev-esm": "tsc --watch",
    "dev": "concurrently 'npm:dev-*'",
    "lint": "eslint --ext .ts .",
    "lint-fix": "eslint --ext .ts --fix .",
    "prepare": "npm run clean && npm run build",
    "prepublishOnly": "npm run lint && npm test",
    "test": "jest --passWithNoTests --coverage=true"
  },
  "devDependencies": {
    "@babel/cli": "^7.26.4",
    "@babel/preset-env": "^7.26.0",
    "@babel/preset-typescript": "^7.26.0",
    "@jest/globals": "^29.7.0",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "concurrently": "^8.2.2",
    "eslint": "^8.57.1",
    "eslint-config-standard": "^17.1.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jest": "^27.6.3",
    "jest": "^29.7.0",
    "rimraf": "^6.0.1",
    "typescript": "^5.7.3"
  }
}
