-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 926 Bytes
/
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
{
"name": "ddeep-core",
"version": "1.1.0",
"description": "peer-to-peer decentralized real-time data protocol",
"scripts": {
"start": "bun ./src/serve",
"build": "bun build --outdir=dist ./src/serve.ts"
},
"bin": {
"ddeep-init": "./init/init.js"
},
"preferGlobal": true,
"keywords": [
"decentralized",
"realtime",
"synchronization",
"database",
"peer-to-peer",
"websocket",
"P2P",
"distributed",
"bun",
"network"
],
"bugs": {
"url": "https://matrix.to/#/@multineon:gitter.im"
},
"license": "(MIT OR Zlib OR Apache-2.0)",
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@huggingface/inference": "^2.6.4"
},
"author": {
"name": "Kais Radwan",
"email": "kais.radwan.personal@gmail.com",
"url": "https://matrix.to/#/@multineon:gitter.im"
}
}