-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
56
57
58
59
60
{
"name": "mailmerge-js",
"version": "1.0.24",
"description": "A powerful CLI for gmail automation, supercharged by AI ⚡",
"exports": "./dist/src/cli/index.js",
"bin": {
"mailmerge": "./dist/src/cli/index.js"
},
"engines": {
"node": ">=18"
},
"postinstall": "echo '⚡ ZAP! Run mailmerge setup to get started. ⚡'",
"scripts": {
"start": "npm run build && ./dist/src/cli/index.js",
"release": "npm run build && npm version patch && npm run build && npm publish && git push",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"type": "module",
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"chalk": "^4.1.2",
"cli-spinners": "^3.0.0",
"commander": "^8.3.0",
"csv-parse": "^5.5.6",
"express": "^4.19.2",
"google-auth-library": "^9.10.0",
"googleapis": "^137.1.0",
"inquirer": "^9.2.22",
"marked": "^12.0.2",
"marked-terminal": "^7.0.0",
"nunjucks": "^3.2.4",
"open": "^10.1.0",
"openai": "^4.47.1",
"ora": "5.4.1",
"semver": "^7.6.2",
"showdown": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/inquirer": "^9.0.7",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^20.12.12",
"@types/nunjucks": "^3.2.6",
"@types/semver": "^7.5.8",
"@types/showdown": "^2.0.6",
"@types/uuid": "^9.0.8",
"eslint": "^8.57.0",
"globals": "^15.3.0",
"ts-node": "^10.9.2",
"typescript": "^4.4.4",
"typescript-eslint": "^7.11.0"
}
}