-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.62 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.62 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "create-react-forge",
"version": "1.0.4",
"description": "Production-ready React CLI scaffolder with Vite/Next.js, testing as first-class citizen",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"create-react-forge": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config/schema.d.ts",
"default": "./dist/config/schema.js"
},
"./templates": {
"types": "./dist/templates/registry.d.ts",
"default": "./dist/templates/registry.js"
}
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:cross-platform": "vitest run src/__tests__/integration/cross-platform-cli.test.ts",
"test:e2e": "vitest run src/__tests__/integration/e2e-cli.test.ts",
"test:local": "bash scripts/test-local.sh",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write src",
"clean": "rm -rf dist",
"prepare": "husky"
},
"keywords": [
"react",
"cli",
"scaffolder",
"vite",
"nextjs",
"generator",
"setup"
],
"author": "Chirag",
"license": "MIT",
"files": [
"dist",
"src/templates/overlays",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@inquirer/core": "^9.1.0",
"@inquirer/prompts": "^8.2.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"deepmerge": "^4.3.1",
"detect-package-manager": "^3.0.2",
"ejs": "^3.1.10",
"execa": "^9.6.1",
"fs-extra": "^11.3.3",
"ora": "^8.1.1",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.9",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,json,md,css,scss,html,yml,yaml}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chiragmak10/create-react-forge.git"
},
"bugs": {
"url": "https://github.com/chiragmak10/create-react-forge/issues"
},
"homepage": "https://github.com/chiragmak10/create-react-forge#readme"
}