-
-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.44 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.44 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
102
103
{
"name": "create-better-t-stack",
"version": "3.27.2",
"description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
"keywords": [
"better-auth",
"better-t-stack",
"biome",
"boilerplate",
"cli",
"drizzle",
"elysia",
"expo",
"fullstack",
"hono",
"monorepo",
"prisma",
"pwa",
"react",
"react-native",
"shadcn",
"starter",
"tailwind",
"tanstack",
"tauri",
"trpc",
"turborepo",
"type-safety",
"typescript"
],
"homepage": "https://better-t-stack.dev/",
"license": "MIT",
"author": "Aman Varshney",
"repository": {
"type": "git",
"url": "git+https://github.com/AmanVarshney01/create-better-t-stack.git",
"directory": "apps/cli"
},
"bin": {
"create-better-t-stack": "dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./cli": {
"import": "./dist/cli.mjs"
},
"./virtual": {
"types": "./dist/virtual.d.mts",
"import": "./dist/virtual.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown --publint",
"dev": "tsdown --watch",
"check-types": "tsc --noEmit",
"test": "bun run build && bun test",
"test:watch": "bun run build && bun test --watch",
"test:coverage": "bun run build && bun test --coverage",
"test:ci": "bun run build && CI=1 bun test --bail=5",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@better-t-stack/template-generator": "workspace:*",
"@better-t-stack/types": "workspace:*",
"@clack/core": "^1.1.0",
"@clack/prompts": "^1.1.0",
"@modelcontextprotocol/sdk": "1.27.1",
"@trpc/server": "^11.13.4",
"better-result": "^2.7.0",
"consola": "^3.4.2",
"env-paths": "^4.0.0",
"execa": "^9.6.1",
"fs-extra": "^11.3.4",
"gradient-string": "^3.0.0",
"handlebars": "^4.7.8",
"jsonc-parser": "^3.3.1",
"oxfmt": "^0.36.0",
"picocolors": "^1.1.1",
"tinyglobby": "^0.2.15",
"trpc-cli": "^0.12.4",
"ts-morph": "^27.0.2",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.3.5",
"publint": "^0.3.18",
"tsdown": "^0.21.0",
"typescript": "^5.9.3"
}
}