-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "@manavarya0909/ui-forge-cli",
"version": "1.6.0",
"description": "Generate production-grade UI systems and backends in seconds - Frontend with Next.js, Tailwind | Backend with Express, Database, Auth",
"type": "module",
"bin": {
"uiforge": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc && npm run copy-templates && npm run copy-design-languages",
"copy-templates": "cp -r templates dist/",
"copy-design-languages": "cp -r design-languages dist/",
"watch": "tsc --watch",
"dev": "tsx cli/index.ts",
"prepublishOnly": "npm run build",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"cli",
"ui",
"nextjs",
"tailwind",
"shadcn",
"ui-generator",
"framer-motion",
"react",
"landing-page",
"design-system",
"backend",
"api",
"express",
"rest",
"graphql"
],
"repository": {
"type": "git",
"url": "https://github.com/Manavarya09/ui-forge"
},
"bugs": {
"url": "https://github.com/Manavarya09/ui-forge/issues"
},
"homepage": "https://github.com/Manavarya09/ui-forge#readme",
"author": "Manav Arya Singh",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"gradient-string": "^2.0.0",
"handlebars": "^4.7.8",
"inquirer": "^9.2.20",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^9.0.9",
"@types/node": "^20.14.0",
"tsx": "^4.15.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}