astra-universal-router-sdk
Version:
sdk for integrating with the Astra Router contracts
72 lines (71 loc) • 2.04 kB
JSON
{
"name": "astra-universal-router-sdk",
"version": "0.1.11",
"description": "sdk for integrating with the Astra Router contracts",
"repository": "https://github.com/ambrosus/astra-sdks.git",
"keywords": [
"decentralized exchange",
"airdao"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/astra-universal-router-sdk.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsdx build",
"docs": "typedoc",
"forge:fix": "forge fmt",
"lint": "yarn prettier",
"lint:fix": "yarn prettier:fix && yarn forge:fix",
"prettier": "prettier --check '**/*.ts' && prettier --check '**/*.json'",
"prettier:fix": "prettier --write '**/*.ts' && prettier --write '**/*.json'",
"release": "semantic-release",
"test": "yarn test:hardhat && yarn test:forge",
"test:forge": "forge test",
"test:hardhat": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' hardhat test"
},
"dependencies": {
"@airdao/astra-cl-core": "1.0.0",
"@airdao/astra-contracts": "^1.0.2",
"@airdao/astra-universal-router": "^1.0.2",
"@airdao/permit2-sdk": "1.2.0-airdao.0",
"@airdao/swap-router-contracts": "1.0.0",
"@openzeppelin/contracts": "4.7.0",
"astra-cl-sdk-dev": "^0.1.8",
"astra-classic-sdk": "0.1.5",
"astra-router-sdk": "0.1.9",
"bignumber.js": "^9.0.2",
"ethers": "^5.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.16",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"eslint-plugin-prettier": "^3.4.1",
"hardhat": "^2.22.15",
"prettier": "^2.4.1",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
"typescript": "^4.3.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
}
}