create-bfs 1.0.0-canary.c9b74dcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/cli.js +2 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +70 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# create-bts
|
|
2
|
+
|
|
3
|
+
This is an alias package for [`create-better-t-stack`](https://www.npmjs.com/package/create-better-t-stack).
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx create-bts@latest
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
or
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
bun create bts
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
For full documentation, please visit the [GitHub repository](https://github.com/Marve10s/Better-Fullstack).
|
|
18
|
+
|
|
19
|
+
## About
|
|
20
|
+
|
|
21
|
+
`create-bts` is a shorter alias for the full `create-better-t-stack` command. Both packages provide the same functionality - a modern CLI tool for scaffolding end-to-end type-safe TypeScript projects.
|
|
22
|
+
|
|
23
|
+
All functionality is provided by the main [`create-better-t-stack`](https://www.npmjs.com/package/create-better-t-stack) package.
|
package/cli.js
ADDED
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "create-better-t-stack";
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "create-better-t-stack";
|
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-bfs",
|
|
3
|
+
"version": "1.0.0-canary.c9b74dcc",
|
|
4
|
+
"description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations (alias for create-better-fullstack)",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"better-auth",
|
|
7
|
+
"better-fullstack",
|
|
8
|
+
"bfs",
|
|
9
|
+
"biome",
|
|
10
|
+
"boilerplate",
|
|
11
|
+
"cli",
|
|
12
|
+
"drizzle",
|
|
13
|
+
"elysia",
|
|
14
|
+
"expo",
|
|
15
|
+
"fullstack",
|
|
16
|
+
"hono",
|
|
17
|
+
"monorepo",
|
|
18
|
+
"prisma",
|
|
19
|
+
"pwa",
|
|
20
|
+
"react",
|
|
21
|
+
"react-native",
|
|
22
|
+
"shadcn",
|
|
23
|
+
"starter",
|
|
24
|
+
"tailwind",
|
|
25
|
+
"tanstack",
|
|
26
|
+
"tauri",
|
|
27
|
+
"trpc",
|
|
28
|
+
"turborepo",
|
|
29
|
+
"type-safety",
|
|
30
|
+
"typescript"
|
|
31
|
+
],
|
|
32
|
+
"homepage": "https://github.com/Marve10s/Better-Fullstack",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"author": "Marve10s",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/Marve10s/Better-Fullstack.git",
|
|
38
|
+
"directory": "packages/create-bts"
|
|
39
|
+
},
|
|
40
|
+
"bin": {
|
|
41
|
+
"create-bfs": "cli.js"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"cli.js",
|
|
45
|
+
"index.d.ts",
|
|
46
|
+
"index.js"
|
|
47
|
+
],
|
|
48
|
+
"type": "module",
|
|
49
|
+
"main": "./index.js",
|
|
50
|
+
"module": "./index.js",
|
|
51
|
+
"types": "./index.d.ts",
|
|
52
|
+
"exports": {
|
|
53
|
+
".": {
|
|
54
|
+
"types": "./index.d.ts",
|
|
55
|
+
"import": "./index.js"
|
|
56
|
+
},
|
|
57
|
+
"./cli": {
|
|
58
|
+
"import": "./cli.js"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"lint": "oxlint ."
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"create-better-fullstack": "1.0.0-canary.c9b74dcc"
|
|
69
|
+
}
|
|
70
|
+
}
|