-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 980 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 980 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
40
41
42
43
44
45
46
{
"name": "cypher-cli",
"version": "1.0.0",
"description": "AI-powered website cloning CLI tool",
"main": "index.js",
"type": "module",
"bin": {
"cypher": "./index.js"
},
"scripts": {
"start": "node ./src/index.js",
"dev": "node --watch ./src/index.js",
"build": "echo 'No build process needed for Node.js CLI'",
"test": "echo 'Tests coming soon!'"
},
"keywords": [
"cli",
"website-cloner",
"ai",
"scraping",
"html",
"css",
"javascript"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.0",
"cheerio": "^1.1.2",
"dotenv": "^17.2.1",
"figlet": "^1.8.2",
"gradient-string": "^3.0.0",
"inquirer": "^12.9.3",
"openai": "^5.12.2",
"ora": "^8.2.0",
"puppeteer": "^24.16.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/cypher-cli.git"
}
}