{
  "name": "wechaty-puppet-mini",
  "version": "0.0.32",
  "description": "Puppet mini for Wechaty",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/esm/src/mod.js",
      "require": "./dist/cjs/src/mod.js"
    }
  },
  "typings": "./dist/esm/src/mod.d.ts",
  "engines": {
    "node": ">=18",
    "npm": ">=10"
  },
  "scripts": {
    "clean": "shx rm -fr dist/*",
    "dist": "npm-run-all clean build dist:commonjs",
    "build": "tsc && tsc -p tsconfig.cjs.json",
    "dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
    "lint": "npm-run-all lint:es lint:ts lint:md",
    "lint:ts": "tsc --noEmit",
    "lint:md": "markdownlint README.md",
    "lint:es": "eslint \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
    "lint:fix": "eslint --fix \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
    "start": "node --loader ts-node/esm examples/ding-dong-bot.ts",
    "test": "npm run lint && npm run test:unit",
    "test:upload": "node --loader ts-node/esm src/help/testUpload.ts",
    "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\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/leochen-g/puppet-mini.git"
  },
  "keywords": [
    "chatie",
    "wechaty",
    "chatbot",
    "bot",
    "wechat",
    "sdk",
    "puppet",
    "mock"
  ],
  "author": "Leo_chen <leo.gengchen@foxmail.com>",
  "bugs": {
    "url": "https://github.com/leochen-g/puppet-mini/issues"
  },
  "homepage": "https://github.com/leochen-g/puppet-mini#readme",
  "devDependencies": {
    "@chatie/eslint-config": "^1.0.4",
    "@chatie/git-scripts": "^0.6.2",
    "@chatie/semver": "^0.4.7",
    "@chatie/tsconfig": "^4.6.2",
    "@types/crypto-js": "^4.1.1",
    "@types/fs-extra": "^9.0.13",
    "@types/jsonwebtoken": "^9.0.6",
    "@types/koa": "^2.13.4",
    "@types/koa-router": "^7.4.4",
    "@types/node": "^20.11.30",
    "@types/request": "^2.48.8",
    "@types/uuid": "^8.3.3",
    "eslint-plugin-promise": "^6.1.1",
    "tstest": "^1.2.8"
  },
  "peerDependencies": {
    "@juzi/wechaty-puppet": "^1.0.90"
  },
  "dependencies": {
    "@koa/cors": "^5.0.0",
    "axios": "^1.6.8",
    "crypto": "^1.0.1",
    "crypto-js": "^4.1.1",
    "dayjs": "^1.11.3",
    "file-type": "^17.1.2",
    "flash-store": "^1.3.4",
    "form-data": "^4.0.0",
    "fs-extra": "^10.0.0",
    "hashids": "^2.3.0",
    "jsonwebtoken": "^9.0.2",
    "koa": "^2.13.4",
    "koa-body": "^4.2.0",
    "koa-router": "^10.1.1",
    "lru-cache": "^6.0.0",
    "mongoose": "^8.5.1",
    "mongoose-paginate-v2": "^1.8.2",
    "mqtt": "^5.5.0",
    "uuid": "^9.0.1"
  },
  "files": [
    "dist",
    "src"
  ],
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "git": {
    "scripts": {
      "pre-push": "npx git-scripts-pre-push"
    }
  }
}