-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
120 lines (120 loc) · 3.17 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@mixin.dev/mixin-node-sdk",
"version": "7.3.6",
"license": "MIT",
"description": "Mixin SDK for Node.js and Javascript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MixinNetwork/bot-api-nodejs-client.git"
},
"bugs": {
"url": "https://github.com/MixinNetwork/bot-api-nodejs-client/issues"
},
"homepage": "https://github.com/MixinNetwork/bot-api-nodejs-client#readme",
"keywords": [
"mixin",
"node",
"blockchain",
"crypto",
"js"
],
"scripts": {
"start": "tsdx watch",
"build": "rm -r node_modules/.cache;tsdx build",
"build:umd": "tsdx build --format umd",
"test": "tsdx test",
"lint": "eslint 'src/**' && prettier --check .",
"format": "prettier --write .",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"author": "[email protected]",
"module": "dist/mixin-node-sdk.esm.js",
"size-limit": [
{
"path": "dist/mixin-node-sdk.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/mixin-node-sdk.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@size-limit/esbuild": "^11.2.0",
"@size-limit/esbuild-why": "11.2.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/eslint": "^8.4.2",
"@types/eslint-config-prettier": "^6.11.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^29.0.1",
"@types/lodash.merge": "^4.6.7",
"@types/md5": "^2.3.5",
"@types/node": "^18.0.0",
"@types/node-forge": "^1.3.8",
"@types/pako": "^2.0.0",
"@types/prettier": "^3.0.0",
"@types/serialize-javascript": "^5.0.3",
"@types/uuid": "^9.0.6",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"buffer": "^6.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.1.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-prettier": "^5.2.6",
"node-forge": "^1.3.1",
"prettier": "^3.3.3",
"size-limit": "11.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"yarn-upgrade-all": "^0.7.1"
},
"dependencies": {
"@noble/ciphers": "^1.0.0",
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.5.0",
"axios": "1.8.2",
"axios-retry": "3.4.0",
"bignumber.js": "^9.1.2",
"bs58": "^5.0.0",
"int64-buffer": "^1.0.1",
"is-retry-allowed": "2.2.0",
"lodash.merge": "^4.6.2",
"md5": "^2.3.0",
"nano-seconds": "^1.2.2",
"pako": "^2.0.4",
"serialize-javascript": "^6.0.0",
"uuid": "^9.0.0",
"ws": "^8.7.0"
},
"directories": {
"example": "example",
"test": "test"
},
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}