-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 907 Bytes
/
package.json
File metadata and controls
45 lines (45 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
45
{
"name": "@linagora/twake-cli",
"version": "0.1.0",
"description": "Command-line interface for Twake Workplace — chat, mail, drive, and file sharing from your terminal.",
"type": "module",
"bin": {
"twake": "./bin/twake.js"
},
"scripts": {
"start": "node bin/twake.js",
"lint": "eslint src/",
"test": "node --test test/*.test.js"
},
"keywords": [
"twake",
"linagora",
"matrix",
"jmap",
"cli",
"open-source",
"collaboration",
"chat",
"mail",
"drive"
],
"author": "Jacob",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/jacob/twake-cli"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.0",
"conf": "^12.0.0",
"enquirer": "^2.4.1"
},
"devDependencies": {
"eslint": "^9.0.0"
}
}