{
  "metapak": {
    "configs": [
      "main",
      "readme",
      "tsesm",
      "eslint",
      "jest",
      "ghactions",
      "coveralls"
    ],
    "data": {
      "files": "'src/**/*.ts'",
      "testsFiles": "'src/**/*.test.ts'",
      "distFiles": "'dist/**/*.js'",
      "ignore": [
        "dist"
      ],
      "bundleFiles": [
        "dist",
        "src",
        "bin"
      ]
    }
  },
  "name": "metapak",
  "version": "7.1.1",
  "description": "Node modules authoring made easy.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "metapak": "bin/metapak.js"
  },
  "scripts": {
    "build": "rimraf 'dist' && tsc --outDir dist",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
    "cli": "env NODE_ENV=${NODE_ENV:-cli}",
    "commitlint": "commitlint",
    "cover": "node --run jest -- --coverage",
    "format": "node --run prettier",
    "jest": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest",
    "lint": "eslint 'src/**/*.ts'",
    "metapak": "node bin/metapak.js",
    "mocha": "mocha 'src/**/*.mocha.js'",
    "precommit": "node --run test && node --run lint && node --run metapak -- -s && node --run build",
    "prettier": "prettier --write 'src/**/*.ts'",
    "preversion": "node --run build && node --run test && node --run lint && node --run metapak -- -s",
    "rebuild": "swc ./src -s -d dist -C jsc.target=es2022",
    "test": "node --run jest",
    "version": "node --run changelog"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nfroidure/metapak.git"
  },
  "author": {
    "name": "Nicolas Froidure",
    "email": "nicolas.froidure@insertafter.com",
    "url": "http://insertafter.com/en/index.html"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nfroidure/metapak/issues"
  },
  "homepage": "https://github.com/nfroidure/metapak#readme",
  "dependencies": {
    "application-services": "^9.0.1",
    "chalk": "^5.6.2",
    "commander": "^14.0.3",
    "common-services": "^20.0.0",
    "debug": "^4.4.3",
    "diff": "^9.0.0",
    "glob": "^13.0.6",
    "knifecycle": "^21.1.0",
    "mkdirp": "^3.0.1",
    "sort-keys": "^6.0.0",
    "type-fest": "^5.6.0",
    "yerror": "^11.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.5.0",
    "@commitlint/config-conventional": "^20.5.0",
    "@eslint/js": "^10.0.1",
    "@swc/cli": "^0.8.1",
    "@swc/core": "^1.15.24",
    "@swc/jest": "^0.2.39",
    "@types/debug": "^4.1.13",
    "conventional-changelog": "^7.2.0",
    "eslint": "^10.2.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jest": "^29.15.1",
    "eslint-plugin-prettier": "^5.5.5",
    "jest": "^30.3.0",
    "metapak-nfroidure": "22.1.1",
    "prettier": "^3.8.1",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.2",
    "typescript-eslint": "^8.58.0"
  },
  "engines": {
    "node": ">=24.14.0"
  },
  "contributors": [],
  "files": [
    "dist",
    "src",
    "bin",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "prettier": {
    "semi": true,
    "printWidth": 80,
    "singleQuote": true,
    "trailingComma": "all",
    "proseWrap": "always"
  },
  "jest": {
    "coverageReporters": [
      "lcov"
    ],
    "testPathIgnorePatterns": [
      "/node_modules/"
    ],
    "roots": [
      "<rootDir>/src"
    ],
    "transform": {
      "^.+\\.tsx?$": [
        "@swc/jest",
        {}
      ]
    },
    "testEnvironment": "node",
    "moduleNameMapper": {
      "#(.*)": "<rootDir>/node_modules/$1",
      "(.+)\\.js": "$1"
    },
    "extensionsToTreatAsEsm": [
      ".ts"
    ]
  },
  "funding": {
    "type": "individual",
    "url": "https://github.com/sponsors/nfroidure"
  },
  "overrides": {
    "typescript-eslint": {
      "typescript": "^6"
    },
    "@typescript-eslint/eslint-plugin": {
      "typescript": "^6"
    },
    "@typescript-eslint/parser": {
      "typescript": "^6"
    }
  }
}
