-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "article-export",
"version": "0.0.4",
"description": "Simple serverless app to export article data from an URL with ability to bypass cloudflare anti-bot measures",
"main": "api/index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "echo 'Serverless API build completed' && mkdir -p public && echo 'API ready' > public/index.html",
"deploy": "vercel --prod",
"deploy:staging": "vercel",
"test": "node test.js",
"lint": "eslint api/ --config eslint.config.js",
"format": "prettier --write .",
"clean": "rm -rf .vercel"
},
"keywords": [
"article-extractor",
"serverless",
"vercel",
"humanoid",
"impit",
"anti-bot",
"cloudflare-bypass",
"content-parsing"
],
"author": "Davod Mozafari",
"license": "MIT",
"dependencies": {
"@extractus/article-extractor": "^8.0.20",
"@upstash/redis": "^1.35.7",
"humanoid-js": "^1.0.1",
"impit": "^0.7.4"
},
"devDependencies": {
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "^3.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/davodm/article-export.git"
},
"bugs": {
"url": "https://github.com/davodm/article-export/issues"
},
"homepage": "https://github.com/davodm/article-export#readme"
}