-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.54 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
{
"version": "1.0.0",
"license": "AGPL-3.0-or-later",
"name": "@constl/relai-libp2p",
"author": "Julien Jean Malard-Adam",
"type": "module",
"types": "./dist/src/index.d.ts",
"exports": "./dist/src/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"nettoyer": "rimraf dist",
"compiler": "pnpm versioner && pnpm formatter && pnpm nettoyer && pnpm tspc -p tsconfig.build.json",
"test": "pnpm test:node && pnpm test:navig",
"formatter": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint",
"versioner": "pnpm genversion --es6 --semi src/version.ts",
"lancer": "pnpm compiler && node --env-file=.env dist/serveur.js",
"lancer:prod": "node dist/serveur.js"
},
"watch": {
"build": {
"patterns": "./src/**/*",
"extensions": [
".ts",
".tsx"
]
},
"postbuild": "./dist/**/*"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.0",
"@types/file-saver": "^2.0.7",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/serve-static": "^1.15.7",
"@types/uuid": "^10.0.0",
"core-js": "^3.39.0",
"eslint": "^9.14.0",
"execa": "^9.5.1",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "5.6.3",
"typescript-eslint": "^8.14.0",
"typescript-transform-paths": "^3.5.2"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.0",
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.1",
"@helia/block-brokers": "^4.0.1",
"@libp2p/autonat": "^2.0.10",
"@libp2p/bootstrap": "^11.0.10",
"@libp2p/circuit-relay-v2": "^3.1.0",
"@libp2p/crypto": "^5.0.6",
"@libp2p/dcutr": "^2.0.10",
"@libp2p/identify": "^3.0.10",
"@libp2p/interface": "^2.2.0",
"@libp2p/peer-id": "^5.0.7",
"@libp2p/pubsub-peer-discovery": "^11.0.0",
"@libp2p/tcp": "^10.0.11",
"@libp2p/webrtc": "^5.0.16",
"@libp2p/websockets": "^9.0.11",
"@libp2p/webtransport": "^5.0.16",
"blockstore-core": "^5.0.2",
"blockstore-level": "^2.0.1",
"compression": "^1.7.5",
"events": "^3.3.0",
"express": "^4.21.1",
"genversion": "^3.2.0",
"libp2p": "^2.2.1",
"rimraf": "^6.0.1",
"serve-static": "^1.16.2",
"uint8arrays": "^5.1.0",
"uuid": "^11.0.3",
"wherearewe": "^2.0.1"
}
}