-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 907 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 907 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": "etherpad-cli-client",
"description": "Node Client for Etherpad",
"version": "3.0.5",
"author": {
"name": "John McLear",
"email": "john@mclear.co.uk",
"url": "http://mclear.co.uk"
},
"contributors": [
{
"name": "Dmitry Uvarov",
"email": "uvarov.dl@gmail.com"
}
],
"dependencies": {
"async": "^3.2.6",
"socket.io-client": "^4.8.1",
"superagent": "^10.2.3"
},
"devDependencies": {
"eslint": "^9.32.0",
"eslint-config-etherpad": "^3.0.13",
"typescript": "^5.4.2"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/johnmclear/etherpad-cli-client.git"
},
"bin": {
"etherpad-cli": "cli.js"
},
"funding": {
"type": "individual",
"url": "https://etherpad.org/"
}
}