-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
64
65
66
67
68
69
70
{
"name": "chef-socket",
"version": "3.4.1",
"description": "static files server + websockets = chef-socket",
"keywords": [
"chef-js",
"server",
"static-serve",
"http-server",
"https-server",
"nodejs-server",
"express",
"spa",
"nodejs",
"javascript",
"cli",
"typescript",
"socket.io",
"websockets"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"chef-socket": "./bin/chef-socket"
},
"files": [
"dist",
"demo",
"bin",
"chat.js"
],
"repository": "git://github.com/chef-js/socket.git",
"author": "Jacek Pietal <Prozi>",
"license": "MIT",
"private": false,
"scripts": {
"docs-from-main-macos": "find docs -type f -name '*.html' -exec sed -i '' -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"docs-from-main-linux": "find docs -type f -name '*.html' -exec sed -i -r 's_/blob/[^/]+/_/blob/main/_g' {} +",
"build:docs": "typedoc",
"postbuild:docs": "yarn docs-from-main-macos || yarn docs-from-main-linux",
"prebuild": "rm -rf dist",
"build": "tsc",
"pretest": "yarn build",
"test": "jest --forceExit",
"format": "prettier . --write",
"lint": "eslint src --fix",
"precommit": "yarn lint && yarn test && yarn build:docs && yarn format",
"amend": "yarn precommit && git commit -a --am --no-edit",
"start": "bin/chef-socket demo --plugin chat.js",
"up": "npx npm-check-updates -u && yarn -f && yarn upgrade && yarn add express@^4 --save && yarn add @types/express@^4 -D"
},
"dependencies": {
"@pietal.dev/cache": "^2.0.2",
"chef-core": "^4.2.1",
"express": "^4",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/express": "^4",
"@types/node": "^22.15.21",
"eslint": "^9.27.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"socket.io-client": "^4.8.1",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
}
}