create-better-fullstack 1.5.1 → 1.5.3
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/dist/addons-setup-Bll5VFJd.mjs +1373 -0
- package/dist/addons-setup-CWGwxN68.mjs +5 -0
- package/dist/bts-config-BYD8mHt-.mjs +311 -0
- package/dist/cli.mjs +2 -3
- package/dist/index.d.mts +204 -7
- package/dist/index.mjs +8072 -1
- package/dist/mcp-CRjipp-w.mjs +5 -0
- package/dist/mcp-entry.d.mts +1 -0
- package/dist/mcp-entry.mjs +841 -0
- package/package.json +11 -6
- package/dist/src-hfdQPH0o.mjs +0 -9536
- /package/dist/{chunk-DPg_XC7m.mjs → chunk-CCII7kTE.mjs} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-fullstack",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Scaffold production-ready fullstack apps in seconds. Pick your stack from 270+ options — the CLI wires everything together.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -85,6 +85,10 @@
|
|
|
85
85
|
"./virtual": {
|
|
86
86
|
"types": "./dist/virtual.d.mts",
|
|
87
87
|
"import": "./dist/virtual.mjs"
|
|
88
|
+
},
|
|
89
|
+
"./mcp": {
|
|
90
|
+
"types": "./dist/mcp-entry.d.mts",
|
|
91
|
+
"import": "./dist/mcp-entry.mjs"
|
|
88
92
|
}
|
|
89
93
|
},
|
|
90
94
|
"publishConfig": {
|
|
@@ -97,7 +101,7 @@
|
|
|
97
101
|
"check-types": "tsc --noEmit",
|
|
98
102
|
"test": "bun test ./test/*.test.ts",
|
|
99
103
|
"test:watch": "bun test --watch",
|
|
100
|
-
"test:coverage": "bun test --coverage",
|
|
104
|
+
"test:coverage": "bun test --coverage ./test/*.test.ts",
|
|
101
105
|
"test:ci": "CI=1 bun test --bail=5",
|
|
102
106
|
"test:e2e": "E2E=1 bun test test/e2e/e2e.e2e.ts --timeout 600000",
|
|
103
107
|
"test:integration": "bun test test/e2e/cli-interaction.test.ts test/e2e/cli-binary.test.ts",
|
|
@@ -108,10 +112,10 @@
|
|
|
108
112
|
"prepublishOnly": "npm run build"
|
|
109
113
|
},
|
|
110
114
|
"dependencies": {
|
|
111
|
-
"@better-fullstack/template-generator": "^1.5.
|
|
112
|
-
"@better-fullstack/types": "^1.5.
|
|
115
|
+
"@better-fullstack/template-generator": "^1.5.3",
|
|
116
|
+
"@better-fullstack/types": "^1.5.3",
|
|
113
117
|
"@clack/core": "^0.5.0",
|
|
114
|
-
"@clack/prompts": "^1.
|
|
118
|
+
"@clack/prompts": "^1.2.0",
|
|
115
119
|
"@orpc/server": "^1.13.13",
|
|
116
120
|
"consola": "^3.4.2",
|
|
117
121
|
"env-paths": "^4.0.0",
|
|
@@ -123,6 +127,7 @@
|
|
|
123
127
|
"oxfmt": "^0.19.0",
|
|
124
128
|
"picocolors": "^1.1.1",
|
|
125
129
|
"tinyglobby": "^0.2.15",
|
|
130
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
126
131
|
"trpc-cli": "^0.12.1",
|
|
127
132
|
"ts-morph": "^27.0.2",
|
|
128
133
|
"yaml": "^2.8.3",
|
|
@@ -131,7 +136,7 @@
|
|
|
131
136
|
"devDependencies": {
|
|
132
137
|
"@types/bun": "^1.3.11",
|
|
133
138
|
"@types/fs-extra": "^11.0.4",
|
|
134
|
-
"@types/node": "^25.5.
|
|
139
|
+
"@types/node": "^25.5.2",
|
|
135
140
|
"publint": "^0.3.18",
|
|
136
141
|
"tsdown": "^0.18.2",
|
|
137
142
|
"typescript": "^5.9.3"
|