@sylphx/flow 1.1.0 → 1.1.1
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/CHANGELOG.md +19 -0
- package/package.json +12 -2
- package/src/index.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 1.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5b1adfb: Fix missing runtime dependencies in package.json
|
|
8
|
+
|
|
9
|
+
Add missing dependencies that are required when the package is installed globally:
|
|
10
|
+
|
|
11
|
+
- react and ink (for UI components)
|
|
12
|
+
- drizzle-orm and @libsql/client (for database operations)
|
|
13
|
+
- @modelcontextprotocol/sdk (for MCP features)
|
|
14
|
+
- @lancedb/lancedb (for vector storage)
|
|
15
|
+
- @huggingface/transformers (for tokenization)
|
|
16
|
+
- chokidar (for file watching)
|
|
17
|
+
- ignore (for gitignore parsing)
|
|
18
|
+
- ai (for AI SDK features)
|
|
19
|
+
|
|
20
|
+
This fixes the error: "Cannot find module 'react/jsx-dev-runtime'" when running sylphx-flow -v after global installation.
|
|
21
|
+
|
|
3
22
|
## 1.1.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/flow",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "AI-powered development workflow automation with autonomous loop mode and smart configuration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,7 +27,17 @@
|
|
|
27
27
|
"gray-matter": "^4.0.3",
|
|
28
28
|
"yaml": "^2.8.1",
|
|
29
29
|
"zod": "^4.1.12",
|
|
30
|
-
"debug": "^4.4.3"
|
|
30
|
+
"debug": "^4.4.3",
|
|
31
|
+
"react": "^19.2.0",
|
|
32
|
+
"ink": "^6.4.0",
|
|
33
|
+
"drizzle-orm": "^0.44.7",
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.21.0",
|
|
35
|
+
"@libsql/client": "^0.15.15",
|
|
36
|
+
"@lancedb/lancedb": "^0.22.2",
|
|
37
|
+
"@huggingface/transformers": "^3.7.6",
|
|
38
|
+
"chokidar": "^4.0.3",
|
|
39
|
+
"ignore": "^7.0.5",
|
|
40
|
+
"ai": "^5.0.88"
|
|
31
41
|
},
|
|
32
42
|
"devDependencies": {
|
|
33
43
|
"@types/node": "^24.9.2",
|
package/src/index.ts
CHANGED
|
File without changes
|