-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.94 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
{
"name": "@nuklai/nuklai-sdk",
"version": "0.2.4",
"description": "A JavaScript SDK for interacting with the Nuklai blockchain, providing modular services for HyperVM and NuklaiVM.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"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": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --config jest.config.mjs",
"test:watch": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --watch --config jest.config.mjs",
"test:manual": "node --loader ts-node/esm scripts/test-rpc.ts",
"examples": "NODE_OPTIONS='--loader ts-node/esm' node --experimental-specifier-resolution=node examples/run-examples.ts",
"test:connection": "ts-node --esm examples/test-connection.js",
"test:actions": "ts-node --esm examples/test-actions.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nuklai/nuklai-js-sdk.git"
},
"keywords": [
"blockchain",
"Nuklai",
"HyperVM",
"NuklaiVM",
"cryptocurrency",
"API",
"Avalanche"
],
"author": "Kiran Pachhai <kiran.pachhai@nukl.ai>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nuklai/nuklai-js-sdk/issues"
},
"homepage": "https://github.com/Nuklai/nuklai-js-sdk#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.12.10",
"@types/node-fetch": "^2.6.11",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"esbuild": "^0.21.5",
"esbuild-plugin-alias": "^0.2.1",
"events": "^3.3.0",
"jest": "^29.7.0",
"jest-ts-webcompat-resolver": "^1.0.0",
"path": "^0.12.7",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"util": "^0.12.5"
},
"dependencies": {
"@avalabs/avalanchejs": "^4.0.5",
"@noble/curves": "^1.4.0",
"@noble/ed25519": "^2.1.0",
"@nuklai/hyperchain-sdk": "^0.2.1",
"bech32": "^2.0.0",
"big-integer": "^1.6.52",
"hypersdk-client": "^0.4.13"
},
"browser": {
"buffer": "buffer",
"crypto": "crypto-browserify",
"events": "events",
"process": "process",
"stream": "stream-browserify",
"util": "util",
"zlib": "browserify-zlib"
},
"packageManager": "yarn@4.3.1+sha512.af78262d7d125afbfeed740602ace8c5e4405cd7f4735c08feb327286b2fdb2390fbca01589bfd1f50b1240548b74806767f5a063c94b67e431aabd0d86f7774"
}