oklink-api
Version:
This is a non-official JS SDK API for calling OKLink's API product.
53 lines (52 loc) • 1.51 kB
JSON
{
"name": "oklink-api",
"version": "1.1.0",
"description": "This is a non-official JS SDK API for calling OKLink's API product.",
"type": "module",
"main": "build/main.js",
"module": "build/main.js",
"typings": "build/types/main.d.ts",
"author": "Airic Yu",
"repository": {
"type": "git",
"url": "https://github.com/airicyu/oklink-api"
},
"scripts": {
"start": "ts-node --esm ./src/main.ts",
"prebuild": "rimraf build",
"build": "tsc",
"watch": "tsc --watch",
"webpack": "webpack",
"bundleType": "npx @microsoft/api-extractor run --local --verbose",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"format": "prettier --write ./src/**.ts ./test/**.ts",
"lint": "eslint ./src ./test --ext .ts"
},
"keywords": [
"oklink", "AML", "Compliance", "Blockchain", "Security", "Risk Control"
],
"license": "ISC",
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.5.4",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.5.0"
}
}