dexscreener-sdk
Version:
A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.
73 lines (72 loc) • 1.71 kB
JSON
{
"name": "dexscreener-sdk",
"version": "1.0.3",
"description": "A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"start": "node dist/examples/usage.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ziondido/dexscreener-api-wrapper.git"
},
"keywords": [
"dexscreener",
"defi",
"blockchain",
"trading-api",
"market-data",
"solana",
"ethereum",
"cryptocurrency-api",
"dex",
"screener",
"api",
"cryptocurrency",
"typescript",
"pairs",
"tokens"
],
"author": {
"name": "Tzion Didovsky",
"url": "https://github.com/Ziondido"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Ziondido/dexscreener-api-wrapper/issues"
},
"homepage": "https://github.com/Ziondido/dexscreener-api-wrapper#readme",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^16.0.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.0",
"typescript": "^4.6.0"
}
}