korea-crypto-exchange
Version:
한국의 주요 암호화폐 거래소(업비트, 빗썸) API를 쉽게 구현할 수 있도록 도와주는 TypeScript 라이브러리
70 lines (69 loc) • 1.66 kB
JSON
{
"name": "korea-crypto-exchange",
"version": "1.1.0",
"description": "한국의 주요 암호화폐 거래소(업비트, 빗썸) API를 쉽게 구현할 수 있도록 도와주는 TypeScript 라이브러리",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"postinstall": "husky",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshephan/korea-crypto-exchange.git"
},
"keywords": [
"crypto",
"exchange",
"upbit",
"bithumb",
"typescript"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshephan/korea-crypto-exchange/issues"
},
"homepage": "https://github.com/joshephan/korea-crypto-exchange#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.24",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7",
"jsonwebtoken": "^9.0.2",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}