-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "@beknurakhmed/webforge-cli",
"version": "0.2.1",
"description": "Interactive CLI to generate website project templates — landing pages, e-commerce, CRM, dashboards, blogs, portfolios with React, Vue, Angular, Next.js, Nuxt and more",
"type": "module",
"bin": {
"webforge-cli": "./dist/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"scaffold",
"template",
"generator",
"react",
"vue",
"angular",
"nextjs",
"nuxt",
"vite",
"tailwind",
"landing-page",
"ecommerce",
"dashboard",
"crm",
"blog",
"portfolio"
],
"author": "Beknur <https://github.com/beknurakhmed>",
"repository": {
"type": "git",
"url": "git+https://github.com/beknurakhmed/webforge-cli.git"
},
"homepage": "https://github.com/beknurakhmed/webforge-cli#readme",
"bugs": {
"url": "https://github.com/beknurakhmed/webforge-cli/issues"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"fs-extra": "^11.3.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.3.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}