-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "@effectai/protocol-core",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup --config ../../tsup.config.package.ts --platform neutral",
"dev": "tsup --config ../../tsup.config.package.ts --platform neutral --watch",
"protons-build": "protons ./messages/effect.proto --out-dir ./@generated/effect.protons.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.9.0",
"dependencies": {
"@effectai/protobufs": "workspace:*",
"libp2p": "^2.8.8",
"@libp2p/circuit-relay-v2": "^3.2.14",
"@libp2p/crypto": "^5.0.5",
"@libp2p/identify": "^3.0.27",
"@libp2p/interface": "^2.10.2",
"@libp2p/interface-internal": "^2.3.14",
"@libp2p/mplex": "^11.0.8",
"@libp2p/peer-id": "^5.0.6",
"@libp2p/peer-store": "^11.0.10",
"@libp2p/ping": "^2.0.27",
"@libp2p/tcp": "^10.0.15",
"@libp2p/utils": "^6.6.0",
"@libp2p/webrtc": "^5.0.14",
"@libp2p/websockets": "^9.2.8",
"@multiformats/multiaddr": "^12.3.5",
"@multiformats/multiaddr-matcher": "^1.3.0",
"@chainsafe/libp2p-noise": "^16.1.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"cors": "^2.8.5",
"express": "4.21.2",
"interface-datastore": "^8.3.1",
"it-protobuf-stream": "^1.1.5",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"snarkjs": "^0.7.5",
"uint8arraylist": "^2.4.8",
"uint8arrays": "^5.1.0",
"ulid": "3.0.0",
"@solana/web3.js": "^1.98.2"
},
"devDependencies": {
"protons-runtime": "^5.5.0",
"protons": "^7.6.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"typescript": "^5.8.3"
}
}