-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.16 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
{
"name": "chef-uws",
"version": "2.4.2",
"description": "chef-js + uWebSockets.js = static files server + websockets",
"main": "index.js",
"types": "./dist/index.d.ts",
"bin": {
"chef-uws": "./bin/chef-uws"
},
"keywords": [
"chef-js",
"server",
"static-serve",
"http-server",
"https-server",
"nodejs-server",
"spa",
"nodejs",
"javascript",
"cli",
"typescript",
"uws",
"microwebsockets",
"websockets"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"test": "jest --forceExit",
"start": "bin/chef-uws demo --plugin node_modules/chef-core/chat.js",
"precommit": "yarn build && prettier . --write"
},
"files": [
"dist",
"demo",
"bin",
"client.js"
],
"repository": "git://github.com/chef-js/uws.git",
"author": "Jacek Pietal <Prozi>",
"license": "MIT",
"private": false,
"dependencies": {
"chef-core": "^3.3.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.48.0"
},
"devDependencies": {
"@types/node": "^22.5.4",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"ws": "^8.18.0"
}
}