-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "web3-sdk",
"version": "0.0.1",
"description": "Web3 multi chain SDK",
"repository": "",
"license": "",
"keywords": [],
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/tsc/index.js",
"types": "./dist/tsc/index.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src/ --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"test": "jest",
"docs": "typedoc --entryPoints src/index.ts",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"build": "pnpm test && tsc -p tsconfig.json",
"build-all": "yarn clean && pnpm test && yarn build"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.10",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^5.45.0",
"esbuild": "^0.15.18",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "29.3.1",
"prettier": "^3.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^5.0.4"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"@mysten/bcs": "^1.1.0",
"@mysten/sui": "^1.13.0",
"@noble/curves": "^1.6.0",
"@scure/bip39": "^1.4.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"tslib": "^2.8.0",
"tweetnacl": "^1.0.3"
}
}