-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 1.83 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@orderly.network/orderly-sdk",
"version": "1.1.12",
"description": "Orderly SDK is a complete library to interact with Orderly contracts. You can use it in the browser, or in Node.js runtime. Orderly contracts are built on NEAR network.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "npx eslint --ext .ts --ext .js ./src --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/orderly-network/sdk.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/orderly-network/sdk/issues"
},
"homepage": "https://gitlab.com/orderly-network/sdk#readme",
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.7.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4",
"ts-node": "^10.9.1",
"@types/crypto-js": "^4.1.1"
},
"dependencies": {
"@near-wallet-selector/core": "^7.9.0",
"@near-wallet-selector/modal-ui-js": "^7.9.0",
"@near-wallet-selector/my-near-wallet": "^7.9.0",
"@near-wallet-selector/near-wallet": "^7.9.0",
"@near-wallet-selector/sender": "^7.9.0",
"@noble/ed25519": "^1.7.3",
"@noble/secp256k1": "^1.7.1",
"axios": "^0.27.2",
"base-64": "^1.0.0",
"base58-js": "^1.0.5",
"base64url": "^3.0.1",
"bignumber.js": "^9.1.1",
"btoa": "^1.2.1",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"keccak256": "^1.0.6",
"near-api-js": "^0.45.1",
"pino": "^8.5.0",
"pino-pretty": "^9.1.0"
},
"files": [
"lib"
],
"directories": {
"lib": "lib"
}
}