-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vwbl-sdk",
"description": "VWBL SDK for EVM Compatible Chain",
"version": "0.1.20",
"main": "dist/packages/evm/src/index.js",
"types": "dist/packages/evm/src/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/VWBL/VWBL-SDK.git"
},
"scripts": {
"build": "tsc",
"format": "eslint --fix --quiet './src/**/*.ts*'",
"lint": "eslint './src/**/*.ts*'",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"mocha": "mocha-parallel-tests -r ts-node/register --exit"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.23.3",
"@truffle/hdwallet-provider": "^2.1.15",
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.0.2",
"@types/ethereumjs-abi": "^0.6.5",
"@types/jest": "^29.5.12",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^9.1.0",
"@types/sinon": "^17.0.3",
"@types/uuid": "^8.3.3",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"file-api": "^0.10.4",
"jest": "^29.7.0",
"mocha": "^7.1.2",
"mocha-parallel-tests": "^2.3.0",
"prettier": "^2.5.1",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.338.0",
"@aws-sdk/credential-providers": "^3.338.0",
"@aws-sdk/lib-storage": "^3.338.0",
"vwbl-core": "^0.1.0",
"axios": "^0.27.2",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"ethereumjs-abi": "^0.6.8",
"ethers": "5.7.2",
"fetch-blob": "^4.0.0",
"form-data": "^4.0.0",
"jimp": "^0.16.1",
"mime-types": "^2.1.35",
"uuid": "^8.3.2",
"web3": "^4.3.0"
},
"browser": {
"crypto": false,
"filereader": false,
"fs": false,
"os": false,
"path": false
},
"react-native": {
"fs": false,
"path": false,
"os": false,
"filereader": false,
"crypto": false
}
}