-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.54 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
{
"name": "@hazbase/kit",
"version": "0.7.1",
"description": "An SDK that wraps pre‑designed smart contracts for safe Web (TypeScript) access.",
"author": "IndieSquare Inc <info@hazbase.com>",
"keywords": [
"hazBase",
"backend",
"kit",
"web3",
"typescript",
"blockchain",
"dapps",
"evm",
"ethereum"
],
"homepage": "https://lp.hazbase.com/",
"repository": "hazbase/kit",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"wallet": [
"dist/wallet.d.ts"
],
"x402": [
"dist/x402.d.ts"
],
"extension": [
"dist/extension.d.ts"
],
"browser": [
"dist/browser.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./wallet": {
"types": "./dist/wallet.d.ts",
"require": "./dist/wallet.js",
"import": "./dist/wallet.mjs"
},
"./x402": {
"types": "./dist/x402.d.ts",
"require": "./dist/x402.js",
"import": "./dist/x402.mjs"
},
"./extension": {
"types": "./dist/extension.d.ts",
"require": "./dist/extension.js",
"import": "./dist/extension.mjs"
},
"./browser": {
"types": "./dist/browser.d.ts",
"require": "./dist/browser.js",
"import": "./dist/browser.mjs"
},
"./browser.global": {
"default": "./dist/browser.global.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"dependencies": {
"@hazbase/relayer": "^0.0.20",
"ethers": "^6.16.0"
},
"devDependencies": {
"@hazbase/auth": "0.6.1",
"@types/node": "^20.11.19",
"rimraf": "^5.0.1",
"tsup": "^8.5.1",
"typescript": "^5.4.0"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"test": "npm run test:wallet-link",
"test:wallet-link": "npm run build && node --test test/wallet-link.test.mjs",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"ws": "^8.21.0",
"esbuild": "^0.28.1"
}
}