create-fluxstack 1.5.3 → 1.5.5
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.
|
@@ -165,7 +165,7 @@ export class FluxStackConfig extends LiveComponent<FluxStackConfigState> {
|
|
|
165
165
|
|
|
166
166
|
framework: {
|
|
167
167
|
name: 'FluxStack',
|
|
168
|
-
version: '1.5.
|
|
168
|
+
version: '1.5.5',
|
|
169
169
|
description: 'Modern Full-Stack TypeScript Framework with Live Components',
|
|
170
170
|
author: 'FluxStack Team',
|
|
171
171
|
license: 'MIT'
|
|
@@ -88,6 +88,13 @@ export class ProjectCreator {
|
|
|
88
88
|
join(rootDir, 'config'),
|
|
89
89
|
join(this.targetDir, 'config')
|
|
90
90
|
)
|
|
91
|
+
|
|
92
|
+
// Copy plugins
|
|
93
|
+
await this.copyDirectory(
|
|
94
|
+
join(rootDir, 'plugins'),
|
|
95
|
+
join(this.targetDir, 'plugins')
|
|
96
|
+
)
|
|
97
|
+
|
|
91
98
|
}
|
|
92
99
|
|
|
93
100
|
private async copyDirectory(src: string, dest: string, exclude: string[] = []) {
|
package/core/utils/version.ts
CHANGED
package/create-fluxstack.ts
CHANGED
|
@@ -59,7 +59,7 @@ program
|
|
|
59
59
|
'core',
|
|
60
60
|
'app',
|
|
61
61
|
'config', // ✅ CRITICAL: Copy config folder with declarative configs
|
|
62
|
-
|
|
62
|
+
'plugins', // TODO: Copy when crypto-auth plugin is complete
|
|
63
63
|
'ai-context', // ✅ CRITICAL: Copy AI documentation for users
|
|
64
64
|
'bun.lock', // ✅ CRITICAL: Copy lockfile to maintain working versions
|
|
65
65
|
'package.json', // ✅ Copy real package.json from framework
|
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fluxstack/crypto-auth-plugin",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"description": "Plugin de autenticação criptográfica Ed25519 para FluxStack",
|
|
5
|
-
"main": "index.ts",
|
|
6
|
-
"types": "index.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"import": "./index.ts",
|
|
10
|
-
"types": "./index.ts"
|
|
11
|
-
},
|
|
12
|
-
"./client": {
|
|
13
|
-
"import": "./client/index.ts",
|
|
14
|
-
"types": "./client/index.ts"
|
|
15
|
-
},
|
|
16
|
-
"./server": {
|
|
17
|
-
"import": "./server/index.ts",
|
|
18
|
-
"types": "./server/index.ts"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"fluxstack",
|
|
23
|
-
"plugin",
|
|
24
|
-
"authentication",
|
|
25
|
-
"ed25519",
|
|
26
|
-
"cryptography",
|
|
27
|
-
"security",
|
|
28
|
-
"react",
|
|
29
|
-
"typescript"
|
|
30
|
-
],
|
|
31
|
-
"author": "FluxStack Team",
|
|
32
|
-
"license": "MIT",
|
|
33
|
-
"peerDependencies": {
|
|
34
|
-
"react": ">=16.8.0"
|
|
35
|
-
},
|
|
36
|
-
"peerDependenciesMeta": {
|
|
37
|
-
"react": {
|
|
38
|
-
"optional": true
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"@noble/curves": "1.2.0",
|
|
43
|
-
"@noble/hashes": "1.3.2"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@types/react": "^18.0.0",
|
|
47
|
-
"typescript": "^5.0.0"
|
|
48
|
-
},
|
|
49
|
-
"fluxstack": {
|
|
50
|
-
"plugin": true,
|
|
51
|
-
"version": "^1.0.0",
|
|
52
|
-
"hooks": [
|
|
53
|
-
"setup",
|
|
54
|
-
"onServerStart",
|
|
55
|
-
"onRequest",
|
|
56
|
-
"onResponse"
|
|
57
|
-
],
|
|
58
|
-
"category": "auth",
|
|
59
|
-
"tags": [
|
|
60
|
-
"authentication",
|
|
61
|
-
"ed25519",
|
|
62
|
-
"cryptography",
|
|
63
|
-
"security"
|
|
64
|
-
]
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluxstack/crypto-auth-plugin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Plugin de autenticação criptográfica Ed25519 para FluxStack",
|
|
5
|
+
"main": "index.ts",
|
|
6
|
+
"types": "index.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./index.ts",
|
|
10
|
+
"types": "./index.ts"
|
|
11
|
+
},
|
|
12
|
+
"./client": {
|
|
13
|
+
"import": "./client/index.ts",
|
|
14
|
+
"types": "./client/index.ts"
|
|
15
|
+
},
|
|
16
|
+
"./server": {
|
|
17
|
+
"import": "./server/index.ts",
|
|
18
|
+
"types": "./server/index.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"fluxstack",
|
|
23
|
+
"plugin",
|
|
24
|
+
"authentication",
|
|
25
|
+
"ed25519",
|
|
26
|
+
"cryptography",
|
|
27
|
+
"security",
|
|
28
|
+
"react",
|
|
29
|
+
"typescript"
|
|
30
|
+
],
|
|
31
|
+
"author": "FluxStack Team",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": ">=16.8.0"
|
|
35
|
+
},
|
|
36
|
+
"peerDependenciesMeta": {
|
|
37
|
+
"react": {
|
|
38
|
+
"optional": true
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@noble/curves": "1.2.0",
|
|
43
|
+
"@noble/hashes": "1.3.2"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/react": "^18.0.0",
|
|
47
|
+
"typescript": "^5.0.0"
|
|
48
|
+
},
|
|
49
|
+
"fluxstack": {
|
|
50
|
+
"plugin": true,
|
|
51
|
+
"version": "^1.0.0",
|
|
52
|
+
"hooks": [
|
|
53
|
+
"setup",
|
|
54
|
+
"onServerStart",
|
|
55
|
+
"onRequest",
|
|
56
|
+
"onResponse"
|
|
57
|
+
],
|
|
58
|
+
"category": "auth",
|
|
59
|
+
"tags": [
|
|
60
|
+
"authentication",
|
|
61
|
+
"ed25519",
|
|
62
|
+
"cryptography",
|
|
63
|
+
"security"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
66
|
}
|