-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.6 KB
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
{
"name": "@mercuryworkshop/wisp-js",
"version": "0.4.1",
"description": "A client and server for the Wisp protocol, written in Javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/MercuryWorkshop/wisp-js.git"
},
"author": "MercuryWorkshop",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/MercuryWorkshop/wisp-js/issues"
},
"homepage": "https://github.com/MercuryWorkshop/wisp-js#readme",
"main": "./src/index.mjs",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./dist/wisp-full.cjs"
},
"./client": {
"import": "./src/entrypoints/client.mjs",
"require": "./dist/wisp-client.cjs"
},
"./server": {
"import": "./src/entrypoints/server.mjs",
"require": "./dist/wisp-server.cjs"
}
},
"browser": {
".": "./src/index.mjs",
"./client": "./src/entrypoints/client.mjs",
"./server": "./src/entrypoints/server.mjs",
"./src/compat.mjs": "./src/compat_browser.mjs"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "webpack",
"build:prod": "webpack --mode=production",
"dev": "webpack --watch",
"server_cli": "node ./src/bin/server_cli.mjs",
"prepack": "npm run build:prod"
},
"bin": {
"wisp-js-server": "src/bin/server_cli.mjs"
},
"dependencies": {
"bufferutil": "^4.1.0",
"commander": "^14.0.3",
"ipaddr.js": "^2.3.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"babel-loader": "^10.0.0",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
}
}