-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@functionland/file-protocol",
"version": "0.3.2",
"description": "",
"types": "src/index.ts",
"main": "./dist/node/cjs.cjs",
"module": "./dist/node/esm.js",
"browser": "./dist/browser/esm.js",
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"build:proto": "protoc --ts_out file/schema --proto_path file/schema/ file/schema/index.proto",
"lint": "eslint src --fix"
},
"author": "",
"license": "MIT",
"dependencies": {
"@ipld/dag-cbor": "^5.0.5",
"@ipld/dag-json": "^7.0.0",
"@protobuf-ts/runtime": "^1.0.13",
"async-later": "0.1.7",
"it-pipe": "^1.1.0",
"multiformats": "^8.0.6",
"pako": "^2.0.3",
"rxjs": "^7.1.0",
"streaming-iterables": "^6.0.0",
"peer-id": "~0.15.3",
"@babel/runtime": "~7.15.4"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.0",
"@esbuild-plugins/node-modules-polyfill": "^0.1.1",
"@protobuf-ts/plugin": "^1.0.13",
"@types/bl": "^5.0.1",
"@types/pako": "^1.0.1",
"libp2p": "^0.31.5",
"esbuild": "^0.12.17",
"typescript": "^4.3.5",
"@babel/core": "~7.15.5",
"esbuild-plugin-babel": "~0.2.3",
"@babel/preset-typescript": "~7.15.0",
"@babel/preset-env": "~7.15.6",
"@babel/plugin-transform-runtime": "~7.15.0",
"eslint": "~8.4.1",
"@typescript-eslint/eslint-plugin": "~5.6.0",
"@typescript-eslint/parser": "~5.6.0"
},
"exports":{
".":{
"browser": {
"default":"./dist/browser/esm.js"
},
"node": {
"require":"./dist/node/cjs.cjs",
"import":"./dist/node/esm.js"
}
}
}
}