-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.71 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
{
"name": "@nuklai/hyperchain-sdk",
"version": "0.2.2",
"description": "A JavaScript SDK for interacting with hyperchains providing modular services for HyperVM",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"private": false,
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc && node build.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nuklai/Hyperchain-js-sdk.git"
},
"keywords": [
"blockchain",
"HyperSDK",
"HyperVM",
"Hyperchain",
"cryptocurrency",
"API",
"Avalanche"
],
"author": "Kiran Pachhai <kiran.pachhai@nukl.ai>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nuklai/hyperchain-js-sdk/issues"
},
"homepage": "https://github.com/Nuklai/hyperchain-js-sdk#readme",
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.0",
"@types/ws": "^8.5.12",
"esbuild": "^0.21.5",
"jest": "^29.7.0",
"typescript": "^5.4.2"
},
"dependencies": {
"@avalabs/avalanchejs": "^4.0.5",
"@noble/curves": "^1.5.0",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.4.0",
"@types/elliptic": "^6.4.18",
"big-integer": "^1.6.52",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"elliptic": "^6.5.7",
"lodash": "^4.17.21",
"ws": "^8.18.0"
},
"browser": {
"crypto": false,
"ws": false
}
}