-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.23 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
55
{
"name": "@xmpp/console",
"description": "XMPP console",
"repository": "github:xmppjs/console",
"homepage": "https://github.com/xmppjs/console",
"bugs": "https://github.com/xmppjs/console/issues",
"version": "0.3.0",
"license": "ISC",
"keywords": [
"XMPP",
"console",
"cli",
"terminal",
"debug",
"web"
],
"scripts": {
"test": "eslint .",
"build": "rollup -c",
"prepublish": "npm run build"
},
"dependencies": {
"@xmpp/client": "^0.12.0",
"@xmpp/component": "^0.12.0",
"@xmpp/jid": "^0.12.0",
"@xmpp/xml": "^0.12.0",
"chalk": "^4.1.0",
"express": "^4.17.1",
"ltx": "^2.10.0",
"meow": "^9.0.0",
"open": "^7.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"clipboard": "^2.0.6",
"codemirror": "^5.59.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"notie": "^4.3.1",
"prettier": "^2.2.1",
"prismjs": "^1.23.0",
"rollup": "^2.36.1",
"rollup-plugin-import-css": "^1.1.4"
},
"bin": {
"xmpp-console": "./app.js"
},
"type": "module",
"engines": {
"node": ">= 12",
"npm": ">= 2"
}
}