-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 954 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
40
41
{
"name": "@mercuryworkshop/libcurl-transport",
"version": "1.3.15",
"description": "a bare transport that implements end-to-end encryption with libcurl.js and wisp",
"main": "./dist/index.mjs",
"keywords": [],
"author": "",
"type": "module",
"scripts": {
"build": "node esbuild.bundle.mjs; cp dist/index.cjs dist/index.js",
"prepack": "npm run build"
},
"dependencies": {
"libcurl.js": "^0.6.21"
},
"devDependencies": {
"@mercuryworkshop/bare-mux": "^2.1.6",
"esbuild": "^0.24.0",
"esbuild-plugin-d.ts": "^1.3.1",
"esbuild-plugin-umd-wrapper": "^3.0.0"
},
"files": [
"dist",
"lib"
],
"exports": {
".": {
"browser": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"node": {
"import": "./lib/index.cjs",
"require": "./lib/index.cjs"
},
"default": {
"types": "./lib/index.d.ts"
}
}
}
}