-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.58 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
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
{
"name": "crossbell",
"version": "1.12.1",
"packageManager": "pnpm@9.12.2",
"description": "JavaScript SDK to interact with Crossbell",
"keywords": ["crossbell", "eth", "contract", "web3"],
"license": "MIT",
"bugs": {
"url": "https://github.com/Crossbell-Box/crossbell.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Crossbell-Box/crossbell.js.git"
},
"files": ["dist"],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"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"
},
"./*": "./*"
},
"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"]
}
},
"publishConfig": {
"access": "public"
},
"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"
},
"dependencies": {
"@crossbell/ipfs-fetch": "^0.0.21",
"async-cache-dedupe": "^2.2.0",
"async-retry": "^1.3.3",
"eip1193-types": "^0.2.1",
"exponential-backoff": "^3.1.1",
"p-limit": "3.1.0",
"viem": "^2.21.34"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/async-retry": "^1.4.9",
"@types/node": "^20.17.0",
"abitype": "^1.0.6",
"bumpp": "^9.7.1",
"change-case": "^5.4.4",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.0",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=16.14.0"
},
"simple-git-hooks": {
"pre-commit": "npm run lint:fix"
}
}