{
  "name": "dahua-rpc",
  "version": "0.2.0",
  "description": "Node.js library for Dahua's RPC API.",
  "main": "./dist/index.js",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist",
    "util.d.ts"
  ],
  "scripts": {
    "clean": "rm -rf ./dist",
    "build": "npm run clean && tsc -p tsconfig.build.json",
    "prepack": "npm run build",
    "test": "mocha -g util",
    "test:all": "mocha"
  },
  "keywords": [
    "dahua"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/ItsNotGoodName/dahua-rpc.git"
  },
  "author": "ItsNotGoodName",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/ItsNotGoodName/dahua-rpc/issues"
  },
  "homepage": "https://github.com/ItsNotGoodName/dahua-rpc#readme",
  "devDependencies": {
    "@types/chai": "^4.3.4",
    "@types/md5": "^2.3.2",
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.11.18",
    "@typescript-eslint/eslint-plugin": "^5.49.0",
    "@typescript-eslint/parser": "^5.49.0",
    "chai": "^4.3.7",
    "dotenv": "^16.0.3",
    "eslint": "^8.32.0",
    "mocha": "^10.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.4"
  },
  "eslintConfig": {
    "ignorePatterns": [
      "**/vendor/*.js"
    ],
    "extends": [
      "eslint:recommended",
      "plugin:@typescript-eslint/recommended"
    ],
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint"
    ],
    "root": true
  },
  "dependencies": {
    "axios": "^1.3.0",
    "md5": "^2.3.0"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/index.js"
    },
    "./util": {
      "types": "./dist/types/util.d.ts",
      "default": "./dist/util.js"
    }
  }
}
