forked from mind-network/mind-lake-sdk-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "mind-lake-sdk",
"version": "1.0.4",
"description": "",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "father dev",
"prettier": "prettier --write src/**/*.{js,jsx,tsx,ts,json}",
"test": "jest --clearCache && jest",
"build": "cross-env NODE_ENV=production && father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build"
},
"keywords": [
"mind",
"lake",
"mind-lake"
],
"authors": [],
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/mind-network/mind-lake-sdk-typescript",
"homepage": "https://github.com/mind-network/mind-lake-sdk-typescript",
"dependencies": {
"@babel/runtime": "^7.21.5",
"@types/jest": "^29.5.1",
"@ethersproject/providers": "^5.7.2",
"@metamask/eth-sig-util": "^4.0.0",
"@types/node-rsa": "^1.1.1",
"axios": "^1.3.6",
"dayjs": "^1.11.7",
"decimal.js": "^10.4.3",
"js-base64": "^3.7.5",
"node-forge": "^1.3.1",
"node-rsa": "^1.1.1",
"uuid": "^9.0.0",
"web3": "^1.9.0"
},
"devDependencies": {
"father": "^4.1.8",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"cross-env": "^7.0.3"
}
}