-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 935 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 935 Bytes
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
{
"name": "webchat-irc",
"version": "1.0.1",
"description": "Interlinked IRC for your website.",
"keywords": [
"irc",
"chat",
"webchat",
"embed",
"widget"
],
"homepage": "https://github.com/byeoon/webchat-irc#readme",
"bugs": {
"url": "https://github.com/byeoon/webchat-irc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byeoon/webchat-irc.git"
},
"license": "ISC",
"author": "byeoon",
"type": "commonjs",
"main": "index.js",
"bin": {
"webchat-irc": "./bin/webchat.js"
},
"files": [
"bin/",
"public/",
"index.js",
"webchat.config.example.json",
"README.md"
],
"scripts": {
"start": "node bin/webchat.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "^5.2.1",
"irc-framework": "^4.14.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3"
}
}