UNPKG

@mimicry/sdk

Version:

A node SDK designed to simplify interaction with the Mimicry Protocol smart contracts.

88 lines (87 loc) 1.83 kB
{ "version": "1.1.0", "license": "GPL-3.0-or-later", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=14" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "prepare": "tsdx build", "test": "tsdx test --no-cache", "analyize": "tsdx lint --fix && tsdx test --no-cache && size-limit", "lint": "tsdx lint", "lint:fix": "tsdx lint --fix", "size": "size-limit", "publish": "np" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "@mimicry/sdk", "author": "Aslan Goldenhour", "description": "A node SDK designed to simplify interaction with the Mimicry Protocol smart contracts.", "repository": "https://github.com/Mimicry-Protocol/sdk", "keywords": [ "mimicry", "sdk", "nft", "nfts", "perps" ], "module": "dist/sdk.esm.js", "size-limit": [ { "path": "dist/sdk.cjs.production.min.js", "limit": "100 KB", "ignore": [ "ethers" ] }, { "path": "dist/sdk.esm.js", "limit": "100 KB", "ignore": [ "ethers" ] } ], "devDependencies": { "@size-limit/esbuild": "^8.2.4", "@size-limit/preset-small-lib": "^8.2.4", "husky": "^8.0.3", "np": "^7.7.0", "size-limit": "^8.2.4", "tsdx": "^0.14.1", "tslib": "^2.5.1", "typescript": "^5.0.4" }, "dependencies": { "candlestick-convert": "^6.0.0", "decimal.js": "^10.4.3", "ethers": "^6.4.0" }, "jest": { "globals": { "__DEV__": true } }, "publishConfig": { "registry": "https://registry.npmjs.org", "access": "public" } }