-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.06 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.06 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
{
"name": "@tabcat/zzzync",
"version": "6.0.0",
"description": "sync with peers that have gone to sleep 😴",
"type": "module",
"files": [
"./dist/src"
],
"bin": {
"zzzync": "./dist/src/cli/index.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./server": {
"types": "./dist/src/server.d.ts",
"import": "./dist/src/server.js"
},
"./interface": {
"types": "./dist/src/interface.d.ts",
"import": "./dist/src/interface.js"
},
"./libp2p-fetch/ipns": {
"types": "./dist/src/libp2p-fetch/ipns.d.ts",
"import": "./dist/src/libp2p-fetch/ipns.js"
}
},
"keywords": [
"libp2p",
"offline",
"sync",
"replica",
"local-first"
],
"author": "tabcat",
"license": "MIT",
"scripts": {
"prepublishOnly": "pnpm install && pnpm build",
"lint": "dprint check",
"format": "dprint fmt",
"build": "tsc",
"test": "vitest --config vitest.config.ts --run",
"test:watch": "vitest --config vitest.config.ts",
"api-docs": "typedoc src",
"ci": "pnpm build && pnpm lint && pnpm test",
"prepare": "husky"
},
"lint-staged": {
"*/**": "pnpm run format"
},
"devDependencies": {
"@libp2p/peer-id": "^6.0.4",
"@types/node": "^25.0.3",
"dprint": "^0.51.1",
"helia": "^6.0.14",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"sinon": "^21.0.0",
"sinon-ts": "^2.0.0",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.1",
"@helia/car": "^5.3.0",
"@helia/delegated-routing-v1-http-api-client": "^6.0.1",
"@helia/interface": "^6.1.1",
"@helia/unixfs": "^7.0.1",
"@ipld/car": "^5.4.2",
"@ipld/dag-pb": "^4.1.5",
"@libp2p/bootstrap": "^12.0.11",
"@libp2p/crypto": "^5.1.13",
"@libp2p/fetch": "^4.0.9",
"@libp2p/identify": "^4.0.10",
"@libp2p/interface": "^3.1.0",
"@libp2p/kad-dht": "^16.1.3",
"@libp2p/keychain": "^6.0.9",
"@libp2p/logger": "^6.2.2",
"@libp2p/ping": "^3.0.10",
"@libp2p/tcp": "^11.0.10",
"@libp2p/utils": "^7.0.9",
"@multiformats/multiaddr": "^13.0.1",
"@multiformats/multiaddr-matcher": "^3.0.1",
"@noble/curves": "^2.0.1",
"@tabcat/helia-ipns": "^10.0.3",
"@tabcat/sorted-sets": "^4.2.2",
"any-signal": "^4.2.0",
"blockstore-level": "^3.0.2",
"datastore-core": "^11.0.2",
"datastore-level": "^12.0.2",
"dotenv": "^17.2.3",
"interface-blockstore": "^6.0.1",
"interface-datastore": "^9.0.2",
"interface-store": "^7.0.1",
"ipns": "^10.1.3",
"it-drain": "^3.0.10",
"it-stream-types": "^2.0.2",
"kubo-rpc-client": "^6.1.0",
"libp2p": "^3.1.5",
"multiformats": "^13.4.1",
"p-defer": "^4.0.1",
"uint8-varint": "^2.0.4",
"uint8arraylist": "^2.4.8",
"uint8arrays": "^5.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"classic-level",
"dprint",
"esbuild",
"node-datachannel"
]
}
}