-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "@chorus-one/hyperliquid",
"version": "1.0.1",
"description": "All-in-one toolkit for building staking dApps on hyperliquid network",
"scripts": {
"build": "rm -fr dist/* && tsc -p tsconfig.mjs.json --outDir dist/mjs && tsc -p tsconfig.cjs.json --outDir dist/cjs && bash ../../scripts/fix-package-json",
"test": "mocha 'test/**/*.spec.ts' --ignore 'test/integration/**/*.spec.ts'",
"test:integration": "mocha 'test/integration/*.spec.ts'"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChorusOne/chorus-one-sdk.git",
"directory": "packages/hyperliquid"
},
"homepage": "https://chorus-one.gitbook.io/sdk",
"keywords": [
"hyperliquid",
"staking",
"dApps",
"blockchain",
"chorus-one",
"sdk"
],
"author": "Chorus One AG",
"license": "Apache-2.0",
"dependencies": {
"@chorus-one/signer": "^1.0.0",
"@chorus-one/utils": "^1.0.2",
"@noble/curves": "^1.9.2",
"viem": "^2.28.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@chorus-one/signer-local": "^1.0.0",
"@scure/bip32": "^1.6.0",
"bip39": "^3.1.0",
"dotenv": "^16.0.0"
}
}