{ "name": "@orionprotocol/sdk", "version": "0.3.1", "description": "Orion Protocol SDK", "browser": "./lib/index.umd.js", "main": "./lib/index.cjs.js", "types": "./lib/index.d.ts", "module": "./lib/index.esm.js", "exports": { ".": { "require": "./lib/index.cjs.js", "import": "./lib/index.esm.js", "types": "./lib/index.d.ts" }, "./package.json": "./package.json" }, "scripts": { "start": "npm run build && node lib/esm/index.js", "develop": "concurrently -i -k -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"", "clean": "rimraf lib/*", "watch-ts": "npm run typechain:generate-types && tsc -w --skipLibCheck", "watch-js": "nodemon lib/esm/index.js", "prepare": "npm run build", "prebuild": "npm run typechain:generate-types", "build": "npm run clean && npm run build:esm", "build:esm": "rollup --config rollup.config.ts", "build:cjs": "tsc --p tsconfig.cjs.json", "rollup": "rollup --config rollup.config.ts", "test": "exit 0", "coverage": "jest --coverage", "lint:eslint": "eslint ./src --ext .ts,.js,.tsx,.jsx", "lint:eslint:fix": "eslint ./src --ext .ts,.js,.tsx,.jsx --fix", "typechain:generate-types": "typechain --target=ethers-v5 ./src/abis/*.json --out-dir ./src/artifacts/contracts", "postpublish": "npm run publish-npm", "publish-npm": "npm publish --access public --ignore-scripts --@orionprotocol:registry='https://registry.npmjs.org'" }, "repository": { "type": "git", "url": "git+https://github.com/orionprotocol/sdk.git" }, "keywords": [ "sdk", "orion", "orionprotocol", "trading" ], "author": "", "license": "ISC", "bugs": { "url": "https://github.com/orionprotocol/sdk/issues" }, "devDependencies": { "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-commonjs": "^22.0.0", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-typescript": "^8.3.2", "@typechain/ethers-v5": "^10.0.0", "@types/csprng": "^0.1.2", "@types/node": "^17.0.23", "@types/node-fetch": "^2.6.1", "@types/socket.io-client": "1.4.33", "@types/uuid": "^8.3.4", "@types/ws": "^8.5.3", "@typescript-eslint/eslint-plugin": "^5.16.0", "@typescript-eslint/parser": "^5.16.0", "concurrently": "^7.0.0", "eslint": "^8.12.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.25.4", "husky": "^7.0.4", "jest": "^27.5.1", "rollup": "^2.71.1", "rollup-plugin-polyfill-node": "^0.9.0", "rollup-plugin-terser": "^7.0.2", "ts-loader": "^9.2.8", "typechain": "^8.0.0", "typescript": "^4.6.3" }, "dependencies": { "@ethersproject/abstract-signer": "^5.6.0", "@ethersproject/providers": "^5.6.2", "bignumber.js": "^9.0.2", "buffer": "^6.0.3", "crypto-browserify": "^3.12.0", "csprng": "^0.1.2", "ethers": "^5.6.2", "isomorphic-ws": "^4.0.1", "just-clone": "^5.0.1", "node-fetch": "^2.6.7", "socket.io-client": "2.4.0", "stream-browserify": "^3.0.0", "tiny-invariant": "^1.2.0", "uuid": "^8.3.2", "websocket-heartbeat-js": "^1.1.0", "ws": "^8.5.0", "zod": "^3.14.4" }, "homepage": "https://github.com/orionprotocol/sdk#readme", "files": [ "/lib", "/src" ] }