-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "@functionland/borg",
"version": "0.4.0",
"description": "Interface with a borg server from the browser!",
"type": "module",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"build": "node scripts/build.mjs",
"build:test": "node scripts/build-test.mjs",
"test": "rushx build:test && cat dist/test.js | testling -u",
"lint": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/functionland/borg/tree/main/libraries/borg"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/functionland/borg/issues"
},
"homepage": "https://github.com/functionland/borg#readme",
"dependencies": {
"@functionland/file-protocol": "^0.3.2",
"@ipld/schema-validation": "^1.1.0",
"libp2p": "^0.31.5",
"libp2p-mplex": "^0.10.2",
"libp2p-webrtc-star": "^0.22.2",
"peer-id": "^0.14.6",
"buffer": "~6.0.3",
"@chainsafe/libp2p-noise": "~4.1.1",
"multiaddr": "^9.0.2"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.0",
"@esbuild-plugins/node-modules-polyfill": "^0.1.1",
"@esbuild-plugins/esm-externals": "^0.0.6",
"@functionland/server" : "^0.1.0",
"wrtc": "^0.4.7",
"libp2p-webrtc-star": "^0.22.2",
"magic-string": "^0.25.7",
"esbuild": "^0.12.17",
"typescript": "^4.3.5",
"libp2p-interfaces": "~1.3.1",
"tap-spec": "^5.0.0",
"ts-node": "^10.4.0",
"nyc": "^15.1.0",
"nodemon": "^2.0.7",
"tape": "~5.3.2",
"debug": "^4.3.3",
"@types/debug": "^4.1.7",
"@types/tape": "^4.13.2",
"browserify": "^17.0.0",
"@types/browserify": "^12.0.37",
"tsify": "^5.0.4",
"testling": "^1.7.3",
"eslint": "~8.4.1",
"@web-std/file": "^3.0.0",
"@typescript-eslint/eslint-plugin": "~5.6.0",
"@typescript-eslint/parser": "~5.6.0",
"esbuild-plugin-babel": "^0.2.3",
"@babel/core": "~7.15.5",
"@babel/preset-typescript": "~7.15.0",
"@babel/preset-env": "~7.15.6",
"@babel/plugin-transform-runtime": "~7.15.0"
}
}