-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.44 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.44 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "mirror-web-cli",
"version": "1.1.3",
"description": "Professional website mirroring tool with intelligent framework preservation, AI-powered analysis, and comprehensive asset optimization",
"main": "src/core/mirror-cloner.js",
"bin": {
"mirror-web-cli": "./src/cli.js"
},
"type": "module",
"scripts": {
"start": "node src/cli.js",
"test": "node src/cli.js https://example.com --debug",
"dev": "node --inspect src/cli.js",
"lint": "echo 'Linting with built-in checks...' && node --check src/cli.js src/core/*.js src/ai/*.js",
"demo": "node src/cli.js https://example.com --clean",
"build-check": "node --check src/cli.js src/core/*.js src/ai/*.js"
},
"keywords": [
"website-mirroring",
"framework-preservation",
"react-cloning",
"vue-mirroring",
"nextjs-mirror",
"angular-clone",
"svelte-mirror",
"web-scraping",
"puppeteer",
"framework-detection",
"asset-optimization",
"offline-website",
"cli-tool",
"web-development",
"static-site-generator",
"ai-powered",
"openai",
"website-analysis",
"professional-tool"
],
"author": {
"name": "Sanjeev Saniel Kujur",
"email": "sanjeevsaniel@gmail.com",
"url": "https://github.com/SanjeevSaniel",
"npm": "sanjeevsaniel"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.5.0",
"cheerio": "^1.1.2",
"commander": "^14.0.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.3.1",
"jsdom": "^24.0.0",
"node-fetch": "^3.3.2",
"openai": "^4.67.3",
"puppeteer": "^24.16.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"sharp": "^0.33.5"
},
"repository": {
"type": "git",
"url": "https://github.com/SanjeevSaniel/mirror-web-cli.git"
},
"directories": {
"src": "./src",
"test": "./test",
"benchmark": "./benchmark",
"examples": "./examples"
},
"bugs": {
"url": "https://github.com/SanjeevSaniel/mirror-web-cli/issues",
"email": "sanjeev@example.com"
},
"homepage": "https://github.com/SanjeevSaniel/mirror-web-cli#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/SanjeevSaniel"
},
"files": [
"src/",
"README.md",
"LICENSE"
],
"preferGlobal": true,
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
]
}