-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.37 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
{
"name": "js-ds-crdt",
"version": "0.0.35",
"main": "dist/index.min.js",
"license": "MIT",
"type": "module",
"author": "dozyio",
"types": "./dist/src/index.d.ts",
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo",
"!.gitignore",
"!.prettierignore"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"project": true,
"sourceType": "module"
}
},
"scripts": {
"build": "aegir build",
"test": "vitest run --hideSkippedTests --allowOnly",
"test:inspect": "vitest run --inspect --no-file-parallelism --hideSkippedTests --allowOnly",
"test:debug": "CI=1 DEBUG=*:helia:bitswap*,-vite*,-connect:dispatcher vitest crdt --hideSkippedTests --allowOnly --disable-console-intercept",
"test:single": "vitest run -t set --hideSkippedTests --allowOnly ",
"test:bench": "vitest bench --maxConcurrency 1",
"test:watch": "vitest",
"clean": "aegir clean",
"generate": "protons ./src/pb/*.proto",
"lint": "aegir lint --fix",
"release": "aegir release",
"release:rc": "aegir release-rc",
"unused": "npx knip"
},
"devDependencies": {
"@libp2p/tcp": "^10.0.11",
"@types/node": "^22.4.0",
"aegir": "^44.1.1",
"blockstore-core": "^4.0.0",
"blockstore-fs": "^1.0.0",
"datastore-fs": "^10.0.0",
"datastore-level": "^10.0.0",
"delay": "^6.0.0",
"eslint-plugin-n": "^17.10.2",
"prettier": "^3.3.3",
"protobufjs": "^7.3.2",
"protons": "^7.6.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.0",
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@ipld/dag-pb": "^4.1.3",
"@libp2p/identify": "^3.0.10",
"@libp2p/interface": "^2.2.0",
"@libp2p/logger": "^5.1.3",
"@multiformats/multiaddr": "^12.3.1",
"async-mutex": "^0.5.0",
"datastore-core": "^10.0.2",
"helia": "^5.1.0",
"interface-blockstore": "^5.3.1",
"interface-datastore": "^8.3.1",
"interface-store": "^6.0.2",
"it-drain": "^3.0.7",
"libp2p": "^2.2.1",
"multiformats": "^13.3.1",
"p-queue": "^8.0.1",
"protons-runtime": "^5.5.0",
"uint8arraylist": "^2.4.8",
"uint8arrays": "^5.1.0",
"weald": "^1.0.4"
}
}