-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.04 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": "designermd",
"version": "1.0.0",
"description": "AI-powered CLI tool that analyzes any website URL and generates a comprehensive DESIGN.md file with 11 design system sections",
"main": "src/analyzer.js",
"bin": {
"designermd": "./bin/designermd.js"
},
"scripts": {
"start": "node bin/designermd.js",
"test": "node test/harness.js"
},
"files": [
"bin/",
"src/",
"README.md"
],
"keywords": [
"design",
"ai",
"design-system",
"cli",
"markdown",
"ui",
"ux",
"frontend",
"css",
"analyzer"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sidhant947/designermd"
},
"homepage": "https://github.com/sidhant947/designermd#readme",
"bugs": {
"url": "https://github.com/sidhant947/designermd/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"figlet": "^1.7.0",
"node-fetch": "^2.7.0",
"prompts": "^2.4.2"
},
"engines": {
"node": ">=18.0.0"
}
}