-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.71 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.71 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
{
"name": "@zeus-network/zeus-stack-sdk",
"version": "0.11.9",
"description": "SDK for Zeus Network's Bitcoin-to-zBTC cross-chain protocol on Solana",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./two-way-peg/types": {
"import": "./dist/zpl/two-way-peg/types.mjs",
"require": "./dist/zpl/two-way-peg/types.cjs",
"types": "./dist/zpl/two-way-peg/types.d.ts"
},
"./liquidity-management/types": {
"import": "./dist/zpl/liquidity-management/types.mjs",
"require": "./dist/zpl/liquidity-management/types.cjs",
"types": "./dist/zpl/liquidity-management/types.d.ts"
},
"./bitcoin": {
"import": "./dist/bitcoin/index.mjs",
"require": "./dist/bitcoin/index.cjs",
"types": "./dist/bitcoin/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build:js": "rolldown -c rolldown.config.ts",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist --noEmit false",
"build": "pnpm build:js && pnpm build:types",
"prepare": "husky && husky install",
"lint": "eslint --fix .",
"format": "prettier --write .",
"spell-check": "cspell \"./**/*.{js,mjs,cjs,ts,md}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"cspell"
],
"*.{json,md,yml,scss}": [
"prettier --write"
]
},
"keywords": [
"bitcoin",
"solana",
"zbtc",
"zeus-network",
"cross-chain",
"blockchain",
"cryptocurrency",
"typescript",
"sdk"
],
"author": "Zeus Network",
"license": "MIT",
"packageManager": "pnpm@10.8.1",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.26.0",
"@types/bn.js": "^5.1.6",
"@types/bs58": "^4.0.4",
"@types/node": "^22.14.1",
"cspell": "^9.0.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.3",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"rolldown": "1.0.0-beta.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"@coral-xyz/borsh": "^0.31.1",
"@solana/buffer-layout": "^4.0.1",
"bitcoinjs-lib": "^6.1.7",
"bn.js": "^5.2.2",
"bs58": "^5.0.0",
"js-sha256": "^0.11.0",
"uint8array-tools": "^0.0.9"
},
"peerDependencies": {
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2"
}
}