{
  "name": "semantic-commit-emoji-config",
  "version": "3.0.0",
  "description": "Config loader for semantic-commit-emoji",
  "keywords": [
    "semantic-commit",
    "emoji"
  ],
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/adambullmer/semantic-commit-emoji.git"
  },
  "homepage": "https://github.com/adambullmer/semantic-commit-emoji/tree/master/packages/commitlint-config#readme",
  "author": "Adam Bullmer <psycodrumfreak@gmail.com>",
  "license": "LGPL-3.0-only",
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "clean": "yarn clean:build && yarn clean:test",
    "clean:build": "rm -rf dist types",
    "clean:test": "rm -rf artifacts",
    "build": "yarn clean && tsc",
    "lint": "eslint *.ts --fix",
    "lint:ci": "eslint *.ts --format junit --output-file ../../artifacts/lint-results.xml",
    "test": "echo 'No tests defined'",
    "test:ci": "echo 'No tests defined'",
    "ws:prepare": "yarn build",
    "release": "semantic-release",
    "release:tarball": "yarn exec ../../scripts/release-tarball"
  },
  "dependencies": {
    "cosmiconfig": "^6.0.0",
    "cosmiconfig-typescript-loader": "^5.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.16.5",
    "eslint": "^9.10.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-formatter-junit": "^8.40.0",
    "eslint-plugin-prettier": "^5.2.1",
    "prettier": "^3.3.3",
    "typescript": "^5.6.2"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./types/index.d.ts"
    }
  }
}