-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
181 lines (181 loc) · 5.16 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "welo",
"version": "4.2.0",
"description": "peer-to-peer, collaborative states using merkle-crdts",
"license": "Apache-2.0 OR MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"files": [
"dist/src"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./*": {
"types": "./dist/src/*.d.ts",
"import": "./dist/src/*.js"
}
},
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
},
"ignorePatterns": [
".aegir.js",
"dist/*",
"benchmark/*"
]
},
"browser": {
"path": "path-browserify",
"make-dir": false,
"./dist/test/utils/libp2p-options.js": "./dist/test/utils/libp2p-options.browser.js"
},
"prettier": "prettier-config-standard",
"scripts": {
"generate": "protons src/message/*.proto",
"prepublishOnly": "npm run build",
"reset": "rm -rf node_modules package-lock.json && npm install",
"lint": "aegir lint",
"lint-fix": "aegir lint --fix",
"dep-check": "aegir dep-check --ignore path-browserify",
"copy-deps": "npx copy-deps",
"format": "prettier -w src test && eslint --fix src test",
"benchmark": "npm run clean && npm run build && node dist/benchmark/benchmark.js && npm run clean",
"build": "aegir build && tsc-alias && ln -sf ./dist/test/.aegir.js ./.aegir.js",
"docs": "NODE_OPTIONS=--max_old_space_size=4096 aegir docs",
"test:chrome": "aegir test -b -t browser -f ./dist/test/**/test-*.js",
"test:node": "npm run build && npm run clean && aegir test -b -t node -f ./dist/test/**/test-*.js -- --exit && npm run clean",
"test": "npm run test:node && npm run test:chrome",
"clean": "git clean -fq test/fixtures && git clean -fqX test/temp .polendina/ && git checkout -- test/fixtures"
},
"repository": {
"type": "git",
"url": "https://github.com/hldb/welo.git"
},
"keywords": [
"peer-to-peer",
"ipfs",
"ipld",
"merkle-crdt"
],
"author": "tabcat <tabcat00@proton.me>",
"bugs": {
"url": "https://github.com/hldb/welo/issues"
},
"homepage": "https://github.com/hldb/welo#readme",
"devDependencies": {
"@chainsafe/libp2p-gossipsub": "^11.0.1",
"@chainsafe/libp2p-noise": "^14.1.0",
"@chainsafe/libp2p-yamux": "^6.0.1",
"@helia/interface": "^3.0.0",
"@libp2p/bootstrap": "^10.0.10",
"@libp2p/circuit-relay-v2": "^1.0.10",
"@libp2p/identify": "^1.0.9",
"@libp2p/interface": "^1.1.1",
"@libp2p/kad-dht": "^12.0.2",
"@libp2p/keychain": "^4.0.5",
"@libp2p/mplex": "^10.0.10",
"@libp2p/tcp": "^9.0.10",
"@libp2p/webrtc": "^4.0.14",
"@libp2p/websockets": "^8.0.10",
"@multiformats/multiaddr": "^12.1.12",
"@types/mocha": "^10.0.6",
"@types/xxhashjs": "^0.2.4",
"aegir": "^42.1.0",
"blockstore-level": "^1.1.7",
"copy-deps": "^1.1.2",
"datastore-level": "^10.1.6",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"interface-datastore": "^8.2.10",
"interface-store": "^5.1.8",
"ipns": "^8.0.0",
"level": "^8.0.0",
"libp2p": "^1.1.1",
"make-dir": "^4.0.0",
"path-browserify": "^1.0.1",
"prettier": "^3.1.1",
"prettier-config-standard": "^7.0.0",
"protons": "^7.3.4",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3",
"wherearewe": "^2.0.1"
},
"dependencies": {
"@alanshaw/pail": "^0.3.4",
"@ipld/car": "^5.2.5",
"@ipld/dag-cbor": "^9.0.7",
"@libp2p/crypto": "^3.0.4",
"@libp2p/interfaces": "^3.3.2",
"@libp2p/peer-id": "^4.0.4",
"@libp2p/peer-id-factory": "^4.0.3",
"@open-draft/deferred-promise": "^2.2.0",
"@tabcat/zzzync": "^5.0.0",
"datastore-core": "^9.2.7",
"helia": "^3.0.0",
"interface-blockstore": "^5.2.9",
"it-all": "^3.0.4",
"it-concat": "^3.0.1",
"it-drain": "^3.0.5",
"it-length-prefixed": "^9.0.4",
"it-pushable": "^3.2.3",
"multiformats": "^13.0.0",
"p-queue": "^8.0.1",
"protons-runtime": "^5.2.2",
"remove": "^0.1.5",
"streaming-iterables": "^8.0.1",
"uint8arrays": "^5.0.1",
"w3name": "^1.0.8",
"web3.storage": "^4.5.5",
"xxhashjs": "^0.2.2"
},
"overrides": {
"@alanshaw/pail": {
"multiformats": "$multiformats"
}
},
"copyDependencies": {
"ipfs-core": [
"multiformats",
"@libp2p/interfaces",
"ipfs-core-types",
"@ipld/dag-cbor",
"interface-datastore",
"@libp2p/interface-keys",
"libp2p",
"@libp2p/interface-peer-id",
"@libp2p/peer-id",
"uint8arrays",
"@libp2p/crypto"
],
"datastore-level": [
"level",
"abstract-level"
],
"libp2p": [
"@libp2p/interface-pubsub"
],
"eslint-config-standard-with-typescript": [
"eslint-plugin-import",
"@typescript-eslint/eslint-plugin",
"eslint-plugin-n",
"eslint-plugin-promise"
]
},
"typedoc": {
"entryPoint": "./src/index.ts"
}
}