-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.26 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.26 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
{
"name": "createforge",
"version": "0.1.0",
"description": "Create working full-stack apps instantly — no tokens, no setup, no BS",
"type": "module",
"bin": {
"createforge": "./dist/cli.js",
"forge": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Om7035/createforge.git"
},
"homepage": "https://github.com/Om7035/createforge#readme",
"bugs": {
"url": "https://github.com/Om7035/createforge/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"prepublishOnly": "npm run build"
},
"keywords": [
"scaffold",
"generator",
"template",
"cli",
"full-stack",
"nextjs",
"saas"
],
"author": "Om7035",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.7.0",
"@types/conf": "^2.1.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"conf": "^12.0.0",
"degit": "^2.8.4",
"execa": "^8.0.1",
"node-fetch": "^3.3.2",
"open": "^10.0.3",
"ora": "^7.0.1",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}