-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 973 Bytes
/
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
{
"name": "@flowx-pkg/ts-sdk",
"version": "0.0.14",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@mysten/sui.js": "^0.35.1",
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.3",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.21"
},
"scripts": {
"start": "node dist/index",
"ts-node": "ts-node",
"build": "tsup",
"prepare": "npm run build",
"test": "mocha --timeout 10000 -r dotenv/config -r tsconfig-paths/register -r ts-node/register tests/*.spec.ts"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/lodash": "^4.14.194",
"@types/mocha": "^10.0.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
}
}