Files
orionprotocol-sdk/package.json
dependabot[bot] 3564159dfb Bump @orionprotocol/contracts from 0.8.0 to 0.11.0 (#104)
Bumps [@orionprotocol/contracts](https://github.com/orionprotocol/contracts) from 0.8.0 to 0.11.0.
- [Release notes](https://github.com/orionprotocol/contracts/releases)
- [Commits](https://github.com/orionprotocol/contracts/compare/v0.8.0...v0.11.0)

---
updated-dependencies:
- dependency-name: "@orionprotocol/contracts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-02 19:06:29 +04:00

109 lines
3.2 KiB
JSON

{
"name": "@orionprotocol/sdk",
"version": "0.18.22",
"description": "Orion Protocol SDK",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"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": "tsc -w --skipLibCheck",
"watch-js": "nodemon lib/esm/index.js",
"prepare": "is-ci || husky install",
"build": "tsup src/index.ts",
"coverage": "jest --coverage",
"lint:eslint": "eslint ./src --ext .ts,.js,.tsx,.jsx",
"lint:eslint:fix": "eslint ./src --ext .ts,.js,.tsx,.jsx --fix",
"postpublish": "npm run publish-npm",
"publish-npm": "npm publish --access public --ignore-scripts --@orionprotocol:registry='https://registry.npmjs.org'",
"test": "dotenv jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"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": {
"@babel/core": "^7.21.4",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@tsconfig/esm": "^1.0.2",
"@tsconfig/strictest": "^2.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"babel-loader": "^9.1.2",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"http-terminator": "^3.2.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@orionprotocol/contracts": "0.11.0",
"bignumber.js": "^9.1.1",
"bson-objectid": "^2.0.4",
"buffer": "^6.0.3",
"ethers": "^5.6.2",
"express": "^4.18.2",
"isomorphic-ws": "^5.0.0",
"just-clone": "^6.2.0",
"merge-anything": "^5.1.4",
"neverthrow": "^6.0.0",
"simple-typed-fetch": "^0.1.9",
"stream-browserify": "^3.0.0",
"tiny-invariant": "^1.3.1",
"ts-is-present": "^1.2.2",
"ts-node": "^10.9.1",
"uuid": "^9.0.0",
"ws": "^8.13.0",
"zod": "3.21.4"
},
"homepage": "https://github.com/orionprotocol/sdk#readme",
"files": [
"lib/**/*"
]
}