-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
{
"name": "gmail-ai-unsubscriber",
"version": "1.0.0",
"description": "AI-powered Gmail unsubscriber",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon --exec ts-node src/app.ts",
"build": "tsc",
"build:css": "node scripts/build-css.js",
"build:css:watch": "node scripts/build-css.js --watch",
"build:all": "npm run build && npm run build:css",
"test": "jest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@types/puppeteer": "^5.4.7",
"axios": "^1.6.0",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"google-auth-library": "^9.4.0",
"googleapis": "^128.0.0",
"node-cache": "^5.1.2",
"openai": "^4.20.0",
"puppeteer": "^24.9.0",
"redis": "^5.1.1"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/compression": "^1.8.0",
"@types/cors": "^2.8.18",
"@types/express": "^4.17.18",
"@types/node": "^20.8.0",
"@types/node-cache": "^4.1.3",
"autoprefixer": "^10.4.21",
"nodemon": "^3.0.1",
"postcss": "^8.5.4",
"tailwindcss": "^4.1.8",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"keywords": [
"gmail",
"unsubscribe",
"email",
"AI"
],
"author": "Your Name",
"license": "MIT"
}