-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 937 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 937 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
{
"name": "article-processor",
"version": "1.5.6",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.13.4",
"@types/sanitize-html": "^2.13.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@google/generative-ai": "^0.22.0",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"openai": "^4.85.3",
"puppeteer": "^24.2.1",
"sanitize-html": "^2.14.0",
"sharp": "^0.34.1",
"uuid": "^11.1.0"
}
}