-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "@aditokmo/create-react-project",
"version": "0.2.2",
"description": "A fast React CLI to jumpstart your projects. It sets up your libraries and organizes a scalable folder structure so you can skip the configuration and go straight to coding.",
"main": "dist/index.js",
"type": "module",
"bin": {
"create-react-project": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start:cli": "tsx cli/index.ts",
"watch": "tsc --watch"
},
"keywords": [
"react",
"cli",
"vite",
"project-generator",
"react-starter",
"react-boilerplate",
"feature-based-architecture",
"folder-structure",
"tanstack-router",
"tanstack-query",
"zustand",
"shadcn-ui",
"tailwind-css",
"frontend-architecture",
"dx",
"automated-setup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aditokmo/react-setup-cli.git"
},
"bugs": {
"url": "https://github.com/aditokmo/react-setup-cli/issues"
},
"homepage": "https://github.com/aditokmo/react-setup-cli#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"templates"
],
"author": {
"name": "aditokmo",
"url": "https://github.com/aditokmo"
},
"license": "ISC",
"packageManager": "pnpm@10.27.0",
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.6.2",
"fs-extra": "^11.3.3",
"ora": "^9.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.3",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}