-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "create-vite-reactstack",
"version": "1.0.1",
"description": "Scaffold a Vite + React + TypeScript app with Tailwind, shadcn, React Compiler, and more",
"type": "module",
"bin": {
"create-vite-reactstack": "dist/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"smoke": "node scripts/smoke.mjs",
"smoke:full": "node scripts/smoke.mjs --full",
"prepublishOnly": "pnpm build && pnpm smoke"
},
"keywords": [
"vite",
"react",
"typescript",
"tailwind",
"shadcn",
"scaffold",
"create"
],
"license": "MIT",
"author": "Arindam Biswas",
"repository": {
"type": "git",
"url": "git+https://github.com/devarinb/create-vite-reactstack.git"
},
"homepage": "https://cvrs.arindambiswas.co.in",
"bugs": {
"url": "https://github.com/devarinb/create-vite-reactstack/issues"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^26.1.2",
"tsup": "^8.5.1",
"typescript": "^7.0.2"
}
}