Files
orionprotocol-sdk/package.json
2023-01-23 12:02:14 +03:00

83 lines
2.4 KiB
JSON

{
"name": "@orionprotocol/sdk",
"version": "0.16.0-rc.23",
"description": "Orion Protocol SDK",
"main": "./lib/esm/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"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": "npm run build",
"prebuild": "tsc",
"build": "webpack",
"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",
"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": {
"@types/node": "^18.11.9",
"@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",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"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",
"ts-loader": "^9.3.0",
"typescript": "^4.9.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.6.0",
"@ethersproject/providers": "^5.6.2",
"@lukeed/csprng": "^1.0.1",
"@orionprotocol/contracts": "0.0.10",
"bignumber.js": "^9.0.2",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"ethers": "^5.6.2",
"isomorphic-unfetch": "^3.1.0",
"isomorphic-ws": "^5.0.0",
"just-clone": "^5.0.1",
"neverthrow": "^4.3.1",
"stream-browserify": "^3.0.0",
"tiny-invariant": "^1.2.0",
"uuid": "^8.3.2",
"ws": "^8.5.0",
"zod": "^3.17.3"
},
"homepage": "https://github.com/orionprotocol/sdk#readme",
"files": [
"lib/**/*"
]
}