-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.53 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
{
"name": "@bizjs/chainkit",
"version": "0.0.1",
"description": "Blockchain business development toolkit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc",
"build2": "rolldown -c",
"pub": "npm run build && npm publish",
"test": "jest --no-watchman",
"test:cov": "jest --coverage --no-watchman"
},
"keywords": [
"blockchain",
"evm",
"ton",
"bitcoin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bizjs/chainkit.git"
},
"bugs": {
"url": "https://github.com/bizjs/chainkit/issues"
},
"author": "hstarorg <hm910705@163.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"rimraf": "^5.0.10",
"rolldown": "1.0.0-beta.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"viem": "^2.21.58"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^1.33.1",
"@emurgo/cardano-message-signing-nodejs": "^1.1.0",
"@emurgo/cardano-serialization-lib-nodejs": "^13.2.0",
"@okxweb3/coin-bitcoin": "1.0.3",
"@ton/ton": "^15.1.0",
"@unisat/wallet-sdk": "^1.8.0",
"bitcoinjs-lib": "^6.1.7",
"bitcore-lib": "10.0.0",
"bs58": "^6.0.0",
"ecpair": "3.0.0-rc.0",
"starknet": "^6.11.0",
"tiny-secp256k1": "^2.2.3",
"tweetnacl": "^1.0.3"
},
"peerDependencies": {
"viem": "^2.21.57"
}
}