lotus-v4-sdk
Version:
⚒️ An SDK for building applications on top of Lotus V4
98 lines (97 loc) • 2.43 kB
JSON
{
"name": "lotus-v4-sdk",
"version": "1.0.6",
"description": "⚒️ An SDK for building applications on top of Lotus V4",
"repository": "https://github.com/Uniswap/sdks.git",
"keywords": [
"lotus"
],
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/v4-sdk.esm.js",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint src",
"release": "semantic-release",
"start": "tsdx watch",
"test": "tsdx test"
},
"sideEffects": false,
"dependencies": {
"@ethersproject/solidity": "^5.0.9",
"@uniswap/sdk-core": "npm:lotus-sdk-core@1.0.6",
"@uniswap/v3-sdk": "npm:lotus-v3-sdk@1.0.6",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3"
},
"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": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"jest": "25.5.0",
"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"
},
"resolutions": {
"regenerator-runtime": "^0.14.1"
},
"resolutionsComments": {
"regenerator-runtime": "Fixes https://github.com/facebook/regenerator/pull/480. It can be removed when `tsdx` updates their dependencies."
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
{
"name": "main",
"prerelease": false
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": "../../publishing/release-rules.cjs"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"successCmd": "git restore yarn.lock && yarn",
"failCmd": "git restore yarn.lock && yarn",
"execCwd": "../.."
}
]
]
}
}