-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "@functionland/server",
"version": "0.1.0",
"description": "Reference implementation of box server in Node.js",
"main": "dist/index.js",
"types": "src",
"scripts": {
"start": "nodemon --watch dist",
"build": "node scripts/build.mjs",
"lint": "eslint src --fix",
"test": "nyc --reporter=lcov --require esbuild-runner/register tape tests/**/*.test.{ts,js} | tap-spec; nyc report ---reporter=text"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/functionland/graph.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/functionland/borg/issues"
},
"homepage": "https://github.com/functionland/borg#readme",
"dependencies": {
"async-later": "^0.1.5",
"@functionland/file-protocol": "^0.3.0",
"@ipld/dag-json": "^7.0.5",
"ipfs": "^0.55.4",
"ipfs-repo": "^9.1.6",
"it-pipe": "^1.1.0",
"libp2p": "^0.31.5",
"libp2p-bootstrap": "^0.12.2",
"libp2p-mplex": "^0.10.2",
"@chainsafe/libp2p-noise": "~4.1.1",
"libp2p-webrtc-direct": "^0.5.1",
"libp2p-webrtc-star": "^0.22.2",
"libp2p-websockets": "^0.15.6",
"multiformats": "^9.4.3",
"openpgp": "^5.0.0-3",
"peer-id": "^0.14.6",
"streaming-iterables": "^6.0.0",
"wrtc": "^0.4.7",
"ipfs-core-types": "~0.8.1"
},
"devDependencies": {
"esbuild": "^0.12.1",
"@web-std/file": "^3.0.0",
"esbuild-runner": "^2.2.1",
"debug": "^4.3.3",
"@types/debug": "^4.1.7",
"tap-spec": "^5.0.0",
"ts-node": "^10.4.0",
"nyc": "^15.1.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.3",
"eslint": "~8.4.1",
"@typescript-eslint/eslint-plugin": "~5.6.0",
"@typescript-eslint/parser": "~5.6.0",
"tape": "~5.3.2",
"@types/tape": "~4.13.2"
}
}