{
  "name": "discomd",
  "version": "1.2.0",
  "description": "Some useful features for Discord Markdown",
  "keywords": [
    "discord",
    "md",
    "markdown",
    "parser"
  ],
  "homepage": "https://github.com/otnc/discomd#readme",
  "bugs": {
    "url": "https://github.com/otnc/discomd/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/otnc/discomd.git"
  },
  "license": "MIT",
  "author": "otoneko.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=14.18"
  },
  "scripts": {
    "build": "tsup",
    "test": "mocha",
    "test:watch": "mocha --watch",
    "test:coverage": "c8 mocha",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "check": "prettier --write . && eslint --fix .",
    "ci": "prettier --check . && eslint .",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "escape-html": "^1.0.3"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@sinonjs/fake-timers": "^15.4.0",
    "@types/escape-html": "^1.0.4",
    "@types/mocha": "^10.0.10",
    "@types/node": "^14.18.63",
    "c8": "^8.0.1",
    "eslint": "^10.8.0",
    "eslint-config-prettier": "^10.1.8",
    "expect": "^29.7.0",
    "globals": "^17.8.0",
    "mocha": "^10.8.2",
    "prettier": "^3.9.6",
    "ts-node": "^10.9.2",
    "tsup": "^6.7.0",
    "typescript": "^5.1.6",
    "typescript-eslint": "^8.65.0"
  }
}
