forked from AmanVarshney01/create-better-t-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.57 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
104
105
106
107
{
"name": "create-better-t-stack",
"version": "3.40.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://www.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 test",
"test:ci": "bun run build && BTS_SKIP_EXTERNAL_COMMANDS=1 BTS_TEST_MODE=1 bun test --bail=5",
"test:complete": "cd ../.. && bun run build && cd apps/cli && BTS_MATRIX_MODE=smoke BTS_BUILD_SAMPLES=1 bun test --bail=5",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@better-t-stack/template-generator": "workspace:*",
"@better-t-stack/types": "workspace:*",
"@clack/core": "^1.4.3",
"@clack/prompts": "^1.7.0",
"@modelcontextprotocol/sdk": "1.30.0",
"@trpc/server": "^11.18.0",
"better-result": "^3.0.0",
"consola": "^3.4.2",
"env-paths": "^4.0.0",
"execa": "^10.0.0",
"fs-extra": "^11.4.0",
"gradient-string": "^3.0.0",
"handlebars": "^4.7.9",
"jsonc-parser": "^3.3.1",
"oxfmt": "^0.63.0",
"picocolors": "^1.1.1",
"semver": "^7.8.5",
"tinyglobby": "^0.2.17",
"trpc-cli": "^0.16.0",
"ts-morph": "^28.0.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.2",
"@types/semver": "^7.8.0",
"publint": "^0.3.22",
"tsdown": "^0.22.14",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22.0.0"
}
}