@nomad-e/bluma-cli 0.0.96 → 0.0.99

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/package.json CHANGED
@@ -1,63 +1,80 @@
1
1
  {
2
- "name": "@nomad-e/bluma-cli",
3
- "version": "0.0.96",
4
- "description": "BluMa independent agent for automation and advanced software engineering.",
5
- "author": "Alex Fonseca",
6
- "license": "Apache-2.0",
7
- "bin": {
8
- "bluma": "dist/main.js"
9
- },
10
- "devDependencies": {
11
- "@babel/preset-env": "^7.28.0",
12
- "@babel/preset-react": "^7.27.1",
13
- "@babel/preset-typescript": "^7.27.1",
14
- "@types/diff": "^7.0.2",
15
- "@types/jest": "^30.0.0",
16
- "@types/node": "^20.14.2",
17
- "@types/react": "^18.3.3",
18
- "@types/update-notifier": "^6.0.8",
19
- "@types/uuid": "^9.0.8",
20
- "babel-jest": "^30.0.5",
21
- "esbuild": "^0.21.4",
22
- "esbuild-plugin-node-externals": "^1.0.1",
23
- "ink-testing-library": "^4.0.0",
24
- "jest": "^30.0.5",
25
- "nodemon": "^3.1.10",
26
- "react": "^18.3.1",
27
- "ts-node-dev": "^2.0.0",
28
- "typescript": "^5.4.5"
29
- },
30
- "type": "module",
31
- "main": "dist/main.js",
32
- "scripts": {
33
- "build": "node scripts/build.js",
34
- "start": "node dist/main.js",
35
- "test": "jest",
36
- "test:watch": "jest --watch",
37
- "prepack": "npm run build"
38
- },
39
- "keywords": [],
40
- "dependencies": {
41
- "@modelcontextprotocol/sdk": "^1.17.0",
42
- "chalk": "^5.5.0",
43
- "cli-highlight": "^2.1.11",
44
- "diff": "^8.0.2",
45
- "dotenv": "^16.4.5",
46
- "ink": "^5.2.1",
47
- "ink-big-text": "^2.0.0",
48
- "ink-spinner": "^5.0.0",
49
- "ink-text-input": "^6.0.0",
50
- "marked": "^16.1.2",
51
- "openai": "^4.47.3",
52
- "react-devtools-core": "^4.28.5",
53
- "read-package-up": "^11.0.0",
54
- "update-notifier": "^7.0.0",
55
- "uuid": "^9.0.1"
56
- },
57
- "files": [
58
- "dist/"
59
- ],
60
- "publishConfig": {
61
- "access": "public"
62
- }
2
+ "name": "@nomad-e/bluma-cli",
3
+ "version": "0.0.99",
4
+ "description": "BluMa independent agent for automation and advanced software engineering.",
5
+ "author": "Alex Fonseca",
6
+ "license": "Apache-2.0",
7
+ "bin": {
8
+ "bluma": "dist/main.js"
9
+ },
10
+ "devDependencies": {
11
+ "@babel/preset-env": "^7.28.0",
12
+ "@babel/preset-react": "^7.27.1",
13
+ "@babel/preset-typescript": "^7.27.1",
14
+ "@types/diff": "^7.0.2",
15
+ "@types/jest": "^30.0.0",
16
+ "@types/node": "^20.14.2",
17
+ "@types/react": "^18.3.3",
18
+ "@types/update-notifier": "^6.0.8",
19
+ "@types/uuid": "^9.0.8",
20
+ "babel-jest": "^30.0.5",
21
+ "esbuild": "^0.21.4",
22
+ "esbuild-plugin-node-externals": "^1.0.1",
23
+ "ink-testing-library": "^4.0.0",
24
+ "jest": "^30.0.5",
25
+ "nodemon": "^3.1.10",
26
+ "react": "^18.3.1",
27
+ "ts-node-dev": "^2.0.0",
28
+ "typescript": "^5.4.5"
29
+ },
30
+ "type": "module",
31
+ "main": "dist/main.js",
32
+ "scripts": {
33
+ "build": "node scripts/build.js",
34
+ "start": "npm run build && node dist/main.js",
35
+ "test": "jest",
36
+ "test:watch": "jest --watch",
37
+ "prepack": "npm run build"
38
+ },
39
+ "keywords": [],
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.17.0",
42
+ "chalk": "^5.5.0",
43
+ "cli-highlight": "^2.1.11",
44
+ "diff": "^8.0.2",
45
+ "dotenv": "^16.4.5",
46
+ "ink": "^5.2.1",
47
+ "ink-big-text": "^2.0.0",
48
+ "ink-spinner": "^5.0.0",
49
+ "ink-text-input": "^6.0.0",
50
+ "marked": "^16.1.2",
51
+ "openai": "^4.47.3",
52
+ "react-devtools-core": "^4.28.5",
53
+ "read-package-up": "^11.0.0",
54
+ "update-notifier": "^7.0.0",
55
+ "uuid": "^9.0.1"
56
+ },
57
+ "files": [
58
+ "dist/"
59
+ ],
60
+ "publishConfig": {
61
+ "access": "public"
62
+ },
63
+ "Resources": {
64
+ "UserPool": {
65
+ "Type": "AWS::Cognito::UserPool",
66
+ "Properties": {
67
+ "AdminCreateUserConfig": {
68
+ "AllowAdminCreateUserOnly": false
69
+ },
70
+ "AliasAttributes": [
71
+ "email",
72
+ "preferred_username"
73
+ ],
74
+ "UserPoolName": {
75
+ "Fn::Sub": "${AWS::StackName}-UserPool"
76
+ }
77
+ }
78
+ }
79
+ }
63
80
  }