forked from MercuryWorkshop/EpoxyTransport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (38 loc) · 869 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
{
"name": "@mercuryworkshop/epoxy-transport",
"version": "2.1.6",
"description": "a bare transport that implements end-to-end encryption with epoxy-tls and wisp",
"main": "./dist/index.mjs",
"keywords": [],
"author": "",
"type": "module",
"license": "AGPL-3.0-only",
"scripts": {
"build": "node esbuild.bundle.mjs",
"prepare": "npm run build"
},
"dependencies": {
"@mercuryworkshop/epoxy-tls": "2.1.0-1"
},
"devDependencies": {
"@mercuryworkshop/bare-mux": "^2.0.4",
"esbuild": "^0.19.12",
"esbuild-plugin-d.ts": "^1.3.0",
"esbuild-plugin-umd-wrapper": "^3.0.0"
},
"exports": {
".": {
"browser": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"node": {
"require": "./lib/index.cjs",
"import": "./lib/index.cjs"
},
"default": {
"types": "./lib/index.d.ts"
},
}
}
}