@nomad-e/bluma-cli 0.10.0 → 0.11.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/dist/config/skills/factorai-sh/SKILL.md +97 -0
- package/dist/main.js +1384 -828
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomad-e/bluma-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "BluMa independent agent for automation and advanced software engineering.",
|
|
5
5
|
"author": "Alex Fonseca",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"@babel/preset-env": "^7.28.0",
|
|
12
12
|
"@babel/preset-react": "^7.27.1",
|
|
13
13
|
"@babel/preset-typescript": "^7.27.1",
|
|
14
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
14
15
|
"@types/diff": "^7.0.2",
|
|
15
16
|
"@types/glob": "^8.1.0",
|
|
16
17
|
"@types/jest": "^30.0.0",
|
|
@@ -74,6 +75,7 @@
|
|
|
74
75
|
"@types/react-dom": "^19.2.3",
|
|
75
76
|
"auto-bind": "^5.0.1",
|
|
76
77
|
"axios": "^1.16.0",
|
|
78
|
+
"better-sqlite3": "^11.10.0",
|
|
77
79
|
"bidi-js": "^1.0.3",
|
|
78
80
|
"chalk": "^5.5.0",
|
|
79
81
|
"class-variance-authority": "^0.7.1",
|
|
@@ -104,13 +106,13 @@
|
|
|
104
106
|
"signal-exit": "^4.1.0",
|
|
105
107
|
"stack-utils": "^2.0.6",
|
|
106
108
|
"strip-ansi": "^7.2.0",
|
|
109
|
+
"supports-hyperlinks": "^4.4.0",
|
|
107
110
|
"tailwind-merge": "^3.5.0",
|
|
108
111
|
"tailwindcss": "^4.2.4",
|
|
109
112
|
"usehooks-ts": "^3.1.1",
|
|
110
113
|
"uuid": "^9.0.1",
|
|
111
114
|
"wrap-ansi": "^10.0.0",
|
|
112
|
-
"yoga-layout": "^3.2.1"
|
|
113
|
-
"supports-hyperlinks": "^4.4.0"
|
|
115
|
+
"yoga-layout": "^3.2.1"
|
|
114
116
|
},
|
|
115
117
|
"files": [
|
|
116
118
|
"dist/",
|