-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.34 KB
/
package.json
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
{
"name": "hayde",
"description": "A CLI tool to create React components quickly and easily. It supports OpenAI, Ollama, ChakraUI, MaterialUI, BuilderIO, and more.",
"repository": "sly777/hayde",
"version": "1.3.4",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"hayde": "./dist/index.js"
},
"engines": {
"node": ">=18.16"
},
"author": "Ilker Guller (https://ilkerguller.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sly777/hayde/issues"
},
"homepage": "https://github.com/sly777/hayde#readme",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "tsx ./src/index.ts",
"start:debug": "tsx ./src/index.ts --debug",
"start:dist": "node ./dist/index.js",
"watch": "yarn start --watch",
"lint": "yarn eslint ./src",
"lint:fix": "yarn lint --fix",
"lint:error-only": "yarn lint --quiet",
"build": "rm -rf dist && yarn lint && yarn typecheck && ncc build ./src/index.ts -q -o dist && yarn copy-templates",
"typecheck": "tsc --noEmit",
"prepare": "is-ci || husky install",
"copy-templates": "cp -r ./templates ./dist/templates",
"version": "yarn build"
},
"dependencies": {
"axios": "1.6.2",
"cfonts": "3.2.0",
"commander": "11.1.0",
"dotenv": "16.3.1",
"emmet": "2.4.6",
"handlebars": "4.7.8",
"inquirer": "9.2.12",
"js-beautify": "1.14.11",
"langchain": "0.0.195",
"node-html-parser": "6.1.11",
"ora": "7.0.1"
},
"devDependencies": {
"@types/inquirer": "9.0.7",
"@types/js-beautify": "1.14.3",
"@types/node": "20.9.3",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.54.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-unicorn": "49.0.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"lint-staged": "15.1.0",
"tsx": "4.2.0",
"type-fest": "4.8.2",
"typescript": "5.3.2"
},
"keywords": [
"cli-tool",
"cli-utility",
"react",
"component-create",
"component-generator",
"typescript",
"cli-app",
"cli",
"react-component",
"react-components",
"react-component-generator",
"react-component-creator",
"builder.io",
"material-ui",
"chakra-ui",
"ai-component",
"ai-helper"
]
}