UNPKG

ndtr-dexter

Version:

Customizable Typescript SDK for interacting with Cardano DEXs

46 lines (45 loc) 1.16 kB
{ "name": "ndtr-dexter", "version": "2.0.0", "license": "MIT", "author": "Zachary Sluder", "keywords": [ "dexter", "Cardano", "DEX" ], "description": "Customizable Typescript SDK for interacting with Cardano DEXs", "type": "module", "main": "./build/index.js", "types": "./build/index.d.ts", "files": [ "build/**/*" ], "scripts": { "build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json", "test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js", "prepare": "npm run build", "prepublishOnly": "npm run test" }, "dependencies": { "@types/crypto-js": "^4.1.1", "axios": "^0.26.1", "axios-retry": "^3.5.1", "bottleneck": "^2.19.5", "crypto-js": "^4.1.1", "lucid-cardano": "^0.8.7" }, "devDependencies": { "@babel/core": "^7.21.4", "@babel/preset-env": "^7.21.4", "@babel/preset-typescript": "^7.21.4", "@types/jest": "^29.5.0", "babel-jest": "^29.5.0", "jest": "^29.5.0", "prettier": "^2.8.8", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "tsc-alias": "^1.8.6", "typescript": "^5.0.3" } }