{
  "name": "wechaty-plugin-contrib",
  "version": "1.12.2",
  "description": "Wechaty Plugin Ecosystem Contrib Package",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/esm/src/mod.js",
      "require": "./dist/cjs/src/mod.js"
    }
  },
  "typings": "./dist/esm/src/mod.d.ts",
  "engines": {
    "node": ">=16",
    "npm": ">=7"
  },
  "dependencies": {
    "language-monitor": "^1.0.3",
    "mustache": "^4.2.0",
    "qrcode-terminal": "^0.12.0"
  },
  "devDependencies": {
    "@chatie/eslint-config": "^1.0.4",
    "@chatie/git-scripts": "^0.6.2",
    "@chatie/semver": "^0.4.7",
    "@chatie/tsconfig": "^4.6.2",
    "@types/mustache": "^4.1.2",
    "wechaty": "^1.11.22",
    "wechaty-mocker": "^1.10.2",
    "wechaty-puppet-mock": "^1.11.2"
  },
  "scripts": {
    "build": "tsc && tsc -p tsconfig.cjs.json",
    "clean": "shx rm -fr dist/*",
    "dist": "npm-run-all clean build dist:commonjs",
    "dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
    "lint": "npm-run-all lint:es lint:ts lint:md",
    "lint:md": "markdownlint README.md",
    "lint:ts": "tsc --isolatedModules --noEmit",
    "example": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/ding-dong-bot.ts",
    "start": "npm run example",
    "test": "npm-run-all lint test:unit",
    "test:pack": "bash -x scripts/npm-pack-testing.sh",
    "test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" tap \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
    "lint:es": "eslint --ignore-pattern tests/fixtures/ '{bin,examples,scripts,src,tests}/**/*.ts'"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wechaty/plugin-contrib.git"
  },
  "keywords": [
    "wechaty",
    "plugin",
    "contrib"
  ],
  "author": "Huan LI <zixia@zixia.net> (李卓桓)",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/wechaty/plugin-contrib/issues"
  },
  "homepage": "https://github.com/wechaty/plugin-contrib#readme",
  "git": {
    "scripts": {
      "pre-push": "npx git-scripts-pre-push"
    }
  },
  "files": [
    "bin/",
    "dist/",
    "src/"
  ],
  "tap": {
    "check-coverage": false
  },
  "publishConfig": {
    "tag": "latest"
  }
}