-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.16 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.16 KB
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
121
122
123
124
{
"name": "@mixin.dev/mixin-node-sdk",
"version": "7.5.0",
"license": "MIT",
"description": "Mixin SDK for Node.js and Javascript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/mixin-node-sdk.esm.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./blaze": {
"types": "./dist/blaze/index.d.ts",
"import": "./dist/blaze/index.mjs",
"require": "./dist/blaze/index.js",
"default": "./dist/blaze/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"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": "bunchee --watch",
"build": "rm -rf dist && bunchee",
"build:umd": "bunchee --runtime browser --format umd --output dist/mixin-node-sdk.umd.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint 'src/**' && prettier --check .",
"format": "prettier --write .",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"author": "contact@mixin.one",
"module": "dist/mixin-node-sdk.esm.mjs",
"size-limit": [
{
"path": "dist/index.js",
"limit": "80 KB"
},
{
"path": "dist/mixin-node-sdk.esm.mjs",
"limit": "65 KB"
}
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@size-limit/esbuild": "^12.0.1",
"@size-limit/esbuild-why": "^12.0.1",
"@size-limit/preset-small-lib": "^12.0.1",
"@types/md5": "^2.3.5",
"@types/node": "^25.5.0",
"@types/node-forge": "^1.3.8",
"@types/pako": "^2.0.0",
"@types/serialize-javascript": "^5.0.3",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"buffer": "^6.0.3",
"bunchee": "^6.9.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.2",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.1",
"node-forge": "^1.3.1",
"prettier": "^3.8.1",
"size-limit": "^12.0.1",
"tslib": "^2.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"axios": "1.13.6",
"axios-retry": "4.5.0",
"bignumber.js": "^10.0.2",
"bs58": "^6.0.0",
"int64-buffer": "^1.0.1",
"is-retry-allowed": "^3.0.0",
"md5": "^2.3.0",
"nano-seconds": "^1.2.2",
"pako": "^2.0.4",
"serialize-javascript": "^7.0.4",
"uuid": "^13.0.0",
"ws": "^8.7.0"
},
"directories": {
"example": "example",
"test": "test"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}