{
  "name": "node-upbit",
  "version": "1.2.0",
  "main": "lib/index.js",
  "files": [
    "lib/**/*"
  ],
  "types": "lib/index.d.ts",
  "author": "dryadsoft <dryadsoft@gmail.com>",
  "license": "MIT",
  "description": "Node.js를 이용하여 업비트 API 사용하기",
  "keywords": [
    "upbit",
    "Rest Api",
    "Node.js",
    "업비트",
    "업비트 API"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/dryadsoft/node-upbit.git"
  },
  "homepage": "https://github.com/dryadsoft/node-upbit",
  "bugs": {
    "url": "https://github.com/dryadsoft/node-upbit/issues",
    "email": "dryadsoft@gmail.com"
  },
  "scripts": {
    "build": "rm -rf lib && tsc && cp -r src/@types lib/@types",
    "build_debug": "rm -rf lib && tsc -p ./.tsconfig && cp -r src/@types lib/@types",
    "prepublishOnly": "yarn build",
    "dev:1": "ts-node example/exam.ts",
    "dev:2": "ts-node example/example.ts"
  },
  "devDependencies": {
    "@types/jsonwebtoken": "^8.5.5",
    "@types/uuid": "^8.3.1",
    "dotenv": "^10.0.0",
    "ts-node": "^10.2.1",
    "typescript": "^4.3.5"
  },
  "dependencies": {
    "axios": "^1.4.0",
    "jsonwebtoken": "^8.5.1",
    "uuid": "^8.3.2"
  },
  "engines": {
    "node": ">=12.20.1"
  }
}
