-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.68 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 2.68 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "crossbell",
"version": "1.13.1",
"description": "JavaScript SDK to interact with Crossbell",
"keywords": [
"crossbell",
"eth",
"contract",
"web3"
],
"bugs": {
"url": "https://github.com/Crossbell-Box/crossbell.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Crossbell-Box/crossbell.js.git"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./contract": {
"types": "./dist/contract/index.d.ts",
"require": "./dist/contract/index.js",
"import": "./dist/contract/index.mjs"
},
"./indexer": {
"types": "./dist/indexer/index.d.ts",
"require": "./dist/indexer/index.js",
"import": "./dist/indexer/index.mjs"
},
"./ipfs": {
"types": "./dist/ipfs/index.d.ts",
"require": "./dist/ipfs/index.js",
"import": "./dist/ipfs/index.mjs"
},
"./network": {
"types": "./dist/network/index.d.ts",
"require": "./dist/network/index.js",
"import": "./dist/network/index.mjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"require": "./dist/utils/index.js",
"import": "./dist/utils/index.mjs"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"contract": [
"./dist/contract/index.d.ts"
],
"indexer": [
"./dist/indexer/index.d.ts"
],
"ipfs": [
"./dist/ipfs/index.d.ts"
],
"network": [
"./dist/network/index.d.ts"
],
"utils": [
"./dist/utils/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup --dts",
"docs:build": "typedoc",
"docs:preview": "serve docs",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepublishOnly": "npm run build",
"release": "bumpp",
"test": "vitest",
"typecheck": "tsc --noEmit",
"update-abi": "node ./scripts/update-abi.mjs",
"watch": "tsup --watch"
},
"simple-git-hooks": {
"pre-commit": "npm run lint:fix"
},
"dependencies": {
"@crossbell/ipfs-fetch": "^0.0.21",
"async-cache-dedupe": "^2.2.0",
"async-retry": "^1.3.3",
"eip1193-types": "^0.2.2",
"exponential-backoff": "^3.1.2",
"p-limit": "6.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/async-retry": "^1.4.9",
"@types/node": "^22.14.1",
"abitype": "^1.0.8",
"bumpp": "^10.1.0",
"change-case": "^5.4.4",
"simple-git-hooks": "^2.12.1",
"tsup": "^8.4.0",
"typedoc": "^0.28.2",
"typescript": "^5.8.3",
"viem": "^2.26.5",
"vitest": "^3.1.1"
},
"peerDependencies": {
"viem": ">=2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.14.0"
},
"publishConfig": {
"access": "public"
}
}