-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 796 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 796 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
{
"name": "@rusintez/gmail",
"version": "1.0.0",
"description": "CLI for Gmail API - sync emails locally, search, send, manage labels",
"type": "module",
"bin": {
"gmail": "./bin/gmail.js"
},
"files": [
"src",
"bin"
],
"scripts": {
"test": "tsx src/index.ts"
},
"keywords": [
"gmail",
"cli",
"email",
"google",
"api",
"sync"
],
"author": "Vladimir Popov <rusintez@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rusintez/gmail.git"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"commander": "^14.0.3",
"googleapis": "^144.0.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3"
}
}