create-fluxstack 1.19.0 → 1.20.0
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/LLMD/INDEX.md +1 -1
- package/LLMD/MAINTENANCE.md +197 -197
- package/LLMD/MIGRATION.md +44 -1
- package/LLMD/agent.md +20 -7
- package/LLMD/config/declarative-system.md +268 -268
- package/LLMD/config/environment-vars.md +3 -6
- package/LLMD/config/runtime-reload.md +401 -401
- package/LLMD/core/build-system.md +599 -599
- package/LLMD/core/framework-lifecycle.md +249 -229
- package/LLMD/core/plugin-system.md +154 -100
- package/LLMD/patterns/anti-patterns.md +397 -397
- package/LLMD/patterns/project-structure.md +264 -264
- package/LLMD/patterns/type-safety.md +61 -5
- package/LLMD/reference/cli-commands.md +31 -7
- package/LLMD/reference/plugin-hooks.md +4 -2
- package/LLMD/reference/troubleshooting.md +364 -364
- package/LLMD/resources/controllers.md +465 -465
- package/LLMD/resources/live-auth.md +178 -1
- package/LLMD/resources/live-binary-delta.md +3 -1
- package/LLMD/resources/live-components.md +1192 -1041
- package/LLMD/resources/live-logging.md +3 -1
- package/LLMD/resources/live-rooms.md +1 -1
- package/LLMD/resources/live-upload.md +228 -181
- package/LLMD/resources/plugins-external.md +8 -7
- package/LLMD/resources/rest-auth.md +290 -290
- package/LLMD/resources/routes-eden.md +254 -254
- package/app/client/.live-stubs/LiveAdminPanel.js +15 -0
- package/app/client/.live-stubs/LiveCounter.js +9 -0
- package/app/client/.live-stubs/LiveForm.js +11 -0
- package/app/client/.live-stubs/LiveLocalCounter.js +8 -0
- package/app/client/.live-stubs/LivePingPong.js +10 -0
- package/app/client/.live-stubs/LiveRoomChat.js +11 -0
- package/app/client/.live-stubs/LiveSharedCounter.js +10 -0
- package/app/client/.live-stubs/LiveUpload.js +15 -0
- package/app/server/live/auto-generated-components.ts +1 -1
- package/core/utils/version.ts +6 -6
- package/package.json +108 -108
package/package.json
CHANGED
|
@@ -1,108 +1,108 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "create-fluxstack",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "⚡ Revolutionary full-stack TypeScript framework with Declarative Config System, Elysia + React + Bun",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"framework",
|
|
7
|
-
"full-stack",
|
|
8
|
-
"typescript",
|
|
9
|
-
"elysia",
|
|
10
|
-
"react",
|
|
11
|
-
"bun",
|
|
12
|
-
"vite"
|
|
13
|
-
],
|
|
14
|
-
"author": "FluxStack Team",
|
|
15
|
-
"license": "MIT",
|
|
16
|
-
"homepage": "https://github.com/MarcosBrendonDePaula/FluxStack",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/MarcosBrendonDePaula/FluxStack.git"
|
|
20
|
-
},
|
|
21
|
-
"module": "app/server/index.ts",
|
|
22
|
-
"type": "module",
|
|
23
|
-
"bin": {
|
|
24
|
-
"create-fluxstack": "create-fluxstack.ts"
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"dev": "bun run core/cli/index.ts dev",
|
|
28
|
-
"dev:frontend": "bun run core/cli/index.ts dev --frontend-only",
|
|
29
|
-
"dev:backend": "bun run core/cli/index.ts dev --backend-only",
|
|
30
|
-
"build": "cross-env NODE_ENV=production bun run core/cli/index.ts build",
|
|
31
|
-
"build:frontend": "cross-env NODE_ENV=production bun run core/cli/index.ts build --frontend-only",
|
|
32
|
-
"build:backend": "cross-env NODE_ENV=production bun run core/cli/index.ts build --backend-only",
|
|
33
|
-
"build:exe": "cross-env NODE_ENV=production && bun run core/cli/index.ts build && bun run core/cli/index.ts build:exe",
|
|
34
|
-
"start": "NODE_ENV=production bun dist/index.js",
|
|
35
|
-
"create": "bun run core/cli/index.ts create",
|
|
36
|
-
"cli": "bun run core/cli/index.ts",
|
|
37
|
-
"make:component": "bun run core/cli/index.ts make:component",
|
|
38
|
-
"sync-version": "bun run core/utils/sync-version.ts",
|
|
39
|
-
"test": "vitest",
|
|
40
|
-
"test:ui": "vitest --ui",
|
|
41
|
-
"test:coverage": "vitest run --coverage",
|
|
42
|
-
"typecheck:api": "tsc --noEmit -p tsconfig.api-strict.json",
|
|
43
|
-
"test:e2e": "playwright test",
|
|
44
|
-
"test:e2e:ui": "playwright test --ui",
|
|
45
|
-
"test:e2e:headed": "playwright test --headed"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@eslint/js": "^9.30.1",
|
|
49
|
-
"@noble/curves": "1.2.0",
|
|
50
|
-
"@noble/hashes": "1.3.2",
|
|
51
|
-
"@playwright/test": "^1.58.2",
|
|
52
|
-
"@tailwindcss/vite": "^4.1.13",
|
|
53
|
-
"@testing-library/jest-dom": "^6.6.4",
|
|
54
|
-
"@testing-library/react": "^16.3.0",
|
|
55
|
-
"@testing-library/user-event": "^14.6.1",
|
|
56
|
-
"@types/bun": "latest",
|
|
57
|
-
"@types/node": "^24.5.2",
|
|
58
|
-
"@types/react": "^19.1.8",
|
|
59
|
-
"@types/react-dom": "^19.1.6",
|
|
60
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
61
|
-
"@vitest/ui": "^3.2.4",
|
|
62
|
-
"baseline-browser-mapping": "^2.10.7",
|
|
63
|
-
"cross-env": "^10.1.0",
|
|
64
|
-
"eslint": "^9.30.1",
|
|
65
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
66
|
-
"eslint-plugin-react-refresh": "^0.4.20",
|
|
67
|
-
"globals": "^16.3.0",
|
|
68
|
-
"jsdom": "^26.1.0",
|
|
69
|
-
"rollup": "4.20.0",
|
|
70
|
-
"tailwindcss": "^4.1.13",
|
|
71
|
-
"typescript": "^5.8.3",
|
|
72
|
-
"typescript-eslint": "^8.35.1",
|
|
73
|
-
"vite-plugin-checker": "^0.12.0",
|
|
74
|
-
"vite-tsconfig-paths": "^6.0.5",
|
|
75
|
-
"vitest": "^3.2.4"
|
|
76
|
-
},
|
|
77
|
-
"dependencies": {
|
|
78
|
-
"@elysiajs/eden": "^1.3.2",
|
|
79
|
-
"@elysiajs/swagger": "^1.3.1",
|
|
80
|
-
"@fluxstack/config": "^1.0.0",
|
|
81
|
-
"@fluxstack/live": "^0.
|
|
82
|
-
"@fluxstack/live-client": "^0.
|
|
83
|
-
"@fluxstack/live-elysia": "^0.7.1",
|
|
84
|
-
"@fluxstack/live-react": "^0.
|
|
85
|
-
"@fluxstack/plugin-kit": "^0.4.0",
|
|
86
|
-
"@fluxstack/plugin-crypto-auth": "^1.0.0",
|
|
87
|
-
"@fluxstack/plugin-csrf-protection": "^1.1.0",
|
|
88
|
-
"@vitejs/plugin-react": "^4.6.0",
|
|
89
|
-
"chalk": "^5.3.0",
|
|
90
|
-
"commander": "^12.1.0",
|
|
91
|
-
"elysia": "^1.4.6",
|
|
92
|
-
"lightningcss": "^1.30.1",
|
|
93
|
-
"ora": "^8.1.0",
|
|
94
|
-
"react": "^19.1.0",
|
|
95
|
-
"react-dom": "^19.1.0",
|
|
96
|
-
"react-icons": "^5.5.0",
|
|
97
|
-
"react-router": "^7.9.3",
|
|
98
|
-
"uuid": "^13.0.0",
|
|
99
|
-
"vite": "^7.1.7",
|
|
100
|
-
"winston": "^3.18.3",
|
|
101
|
-
"winston-daily-rotate-file": "^5.0.0",
|
|
102
|
-
"zustand": "^5.0.8"
|
|
103
|
-
},
|
|
104
|
-
"engines": {
|
|
105
|
-
"bun": ">=1.2.0"
|
|
106
|
-
},
|
|
107
|
-
"preferredPackageManager": "bun"
|
|
108
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "create-fluxstack",
|
|
3
|
+
"version": "1.20.0",
|
|
4
|
+
"description": "⚡ Revolutionary full-stack TypeScript framework with Declarative Config System, Elysia + React + Bun",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"framework",
|
|
7
|
+
"full-stack",
|
|
8
|
+
"typescript",
|
|
9
|
+
"elysia",
|
|
10
|
+
"react",
|
|
11
|
+
"bun",
|
|
12
|
+
"vite"
|
|
13
|
+
],
|
|
14
|
+
"author": "FluxStack Team",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"homepage": "https://github.com/MarcosBrendonDePaula/FluxStack",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/MarcosBrendonDePaula/FluxStack.git"
|
|
20
|
+
},
|
|
21
|
+
"module": "app/server/index.ts",
|
|
22
|
+
"type": "module",
|
|
23
|
+
"bin": {
|
|
24
|
+
"create-fluxstack": "create-fluxstack.ts"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "bun run core/cli/index.ts dev",
|
|
28
|
+
"dev:frontend": "bun run core/cli/index.ts dev --frontend-only",
|
|
29
|
+
"dev:backend": "bun run core/cli/index.ts dev --backend-only",
|
|
30
|
+
"build": "cross-env NODE_ENV=production bun run core/cli/index.ts build",
|
|
31
|
+
"build:frontend": "cross-env NODE_ENV=production bun run core/cli/index.ts build --frontend-only",
|
|
32
|
+
"build:backend": "cross-env NODE_ENV=production bun run core/cli/index.ts build --backend-only",
|
|
33
|
+
"build:exe": "cross-env NODE_ENV=production && bun run core/cli/index.ts build && bun run core/cli/index.ts build:exe",
|
|
34
|
+
"start": "NODE_ENV=production bun dist/index.js",
|
|
35
|
+
"create": "bun run core/cli/index.ts create",
|
|
36
|
+
"cli": "bun run core/cli/index.ts",
|
|
37
|
+
"make:component": "bun run core/cli/index.ts make:component",
|
|
38
|
+
"sync-version": "bun run core/utils/sync-version.ts",
|
|
39
|
+
"test": "vitest",
|
|
40
|
+
"test:ui": "vitest --ui",
|
|
41
|
+
"test:coverage": "vitest run --coverage",
|
|
42
|
+
"typecheck:api": "tsc --noEmit -p tsconfig.api-strict.json",
|
|
43
|
+
"test:e2e": "playwright test",
|
|
44
|
+
"test:e2e:ui": "playwright test --ui",
|
|
45
|
+
"test:e2e:headed": "playwright test --headed"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@eslint/js": "^9.30.1",
|
|
49
|
+
"@noble/curves": "1.2.0",
|
|
50
|
+
"@noble/hashes": "1.3.2",
|
|
51
|
+
"@playwright/test": "^1.58.2",
|
|
52
|
+
"@tailwindcss/vite": "^4.1.13",
|
|
53
|
+
"@testing-library/jest-dom": "^6.6.4",
|
|
54
|
+
"@testing-library/react": "^16.3.0",
|
|
55
|
+
"@testing-library/user-event": "^14.6.1",
|
|
56
|
+
"@types/bun": "latest",
|
|
57
|
+
"@types/node": "^24.5.2",
|
|
58
|
+
"@types/react": "^19.1.8",
|
|
59
|
+
"@types/react-dom": "^19.1.6",
|
|
60
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
61
|
+
"@vitest/ui": "^3.2.4",
|
|
62
|
+
"baseline-browser-mapping": "^2.10.7",
|
|
63
|
+
"cross-env": "^10.1.0",
|
|
64
|
+
"eslint": "^9.30.1",
|
|
65
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
66
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
67
|
+
"globals": "^16.3.0",
|
|
68
|
+
"jsdom": "^26.1.0",
|
|
69
|
+
"rollup": "4.20.0",
|
|
70
|
+
"tailwindcss": "^4.1.13",
|
|
71
|
+
"typescript": "^5.8.3",
|
|
72
|
+
"typescript-eslint": "^8.35.1",
|
|
73
|
+
"vite-plugin-checker": "^0.12.0",
|
|
74
|
+
"vite-tsconfig-paths": "^6.0.5",
|
|
75
|
+
"vitest": "^3.2.4"
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"@elysiajs/eden": "^1.3.2",
|
|
79
|
+
"@elysiajs/swagger": "^1.3.1",
|
|
80
|
+
"@fluxstack/config": "^1.0.0",
|
|
81
|
+
"@fluxstack/live": "^0.8.0",
|
|
82
|
+
"@fluxstack/live-client": "^0.8.0",
|
|
83
|
+
"@fluxstack/live-elysia": "^0.7.1",
|
|
84
|
+
"@fluxstack/live-react": "^0.8.0",
|
|
85
|
+
"@fluxstack/plugin-kit": "^0.4.0",
|
|
86
|
+
"@fluxstack/plugin-crypto-auth": "^1.0.0",
|
|
87
|
+
"@fluxstack/plugin-csrf-protection": "^1.1.0",
|
|
88
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
89
|
+
"chalk": "^5.3.0",
|
|
90
|
+
"commander": "^12.1.0",
|
|
91
|
+
"elysia": "^1.4.6",
|
|
92
|
+
"lightningcss": "^1.30.1",
|
|
93
|
+
"ora": "^8.1.0",
|
|
94
|
+
"react": "^19.1.0",
|
|
95
|
+
"react-dom": "^19.1.0",
|
|
96
|
+
"react-icons": "^5.5.0",
|
|
97
|
+
"react-router": "^7.9.3",
|
|
98
|
+
"uuid": "^13.0.0",
|
|
99
|
+
"vite": "^7.1.7",
|
|
100
|
+
"winston": "^3.18.3",
|
|
101
|
+
"winston-daily-rotate-file": "^5.0.0",
|
|
102
|
+
"zustand": "^5.0.8"
|
|
103
|
+
},
|
|
104
|
+
"engines": {
|
|
105
|
+
"bun": ">=1.2.0"
|
|
106
|
+
},
|
|
107
|
+
"preferredPackageManager": "bun"
|
|
108
|
+
}
|