@appweaver/create-weaver-app 1.0.7 → 1.0.8

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.
@@ -190,16 +190,16 @@ function getNodeDependencies(command, runtime) {
190
190
  dependencies.push(`"@prisma/client": "${prismaVersion}"`);
191
191
  dependencies.push(`"prisma": "${prismaVersion}"`);
192
192
  if (!command.getOptionValue('noQueue')) {
193
- dependencies.push('"bullmq": "5.70.1"');
193
+ dependencies.push('"bullmq": "5.79.1"');
194
194
  }
195
195
  if (!command.getOptionValue('noCron')) {
196
196
  dependencies.push('"cron": "4.4.0"');
197
197
  }
198
198
  if (!command.getOptionValue('noRedis')) {
199
- dependencies.push('"ioredis": "5.9.3"');
199
+ dependencies.push('"ioredis": "5.11.1"');
200
200
  }
201
201
  if (!command.getOptionValue('noMailer')) {
202
- dependencies.push('"nodemailer": "8.0.5"');
202
+ dependencies.push('"nodemailer": "9.0.1"');
203
203
  }
204
204
  return dependencies.sort().map((d) => ` ${d}`);
205
205
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appweaver/create-weaver-app",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Appweaver - the backend framework for AI-first development (@create-weaver-app)",
5
5
  "author": "Luka Matosevic",
6
6
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "create-weaver-app": "node ./dist/create-weaver-app.js"
32
32
  },
33
33
  "dependencies": {
34
- "commander": "14.0.3",
35
- "glob": "13.0.1"
34
+ "commander": "15.0.0",
35
+ "glob": "13.0.6"
36
36
  }
37
37
  }
@@ -24,16 +24,16 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@eslint/js": "9.39.2",
27
- "@types/bun": "1.3.11",
28
- "@types/node": "25.0.10",
29
- "@typescript-eslint/eslint-plugin": "8.53.1",
30
- "@typescript-eslint/parser": "8.53.1",
27
+ "@types/bun": "1.3.14",
28
+ "@types/node": "26.0.0",
29
+ "@typescript-eslint/eslint-plugin": "8.61.1",
30
+ "@typescript-eslint/parser": "8.61.1",
31
31
  "eslint": "9.39.2",
32
32
  "eslint-config-prettier": "10.1.8",
33
- "eslint-plugin-prettier": "5.5.5",
34
- "globals": "17.4.0",
35
- "prettier": "3.8.1",
33
+ "eslint-plugin-prettier": "5.5.6",
34
+ "globals": "17.6.0",
35
+ "prettier": "3.8.4",
36
36
  "typescript": "5.9.3",
37
- "typescript-eslint": "8.53.1"
37
+ "typescript-eslint": "8.61.1"
38
38
  }
39
39
  }
@@ -24,21 +24,21 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@eslint/js": "9.39.2",
27
- "@swc/core": "1.15.10",
27
+ "@swc/core": "1.15.41",
28
28
  "@swc/jest": "0.2.39",
29
29
  "@types/jest": "30.0.0",
30
- "@types/node": "25.0.10",
31
- "@typescript-eslint/eslint-plugin": "8.53.1",
32
- "@typescript-eslint/parser": "8.53.1",
30
+ "@types/node": "26.0.0",
31
+ "@typescript-eslint/eslint-plugin": "8.61.1",
32
+ "@typescript-eslint/parser": "8.61.1",
33
33
  "eslint": "9.39.2",
34
34
  "eslint-config-prettier": "10.1.8",
35
- "eslint-plugin-jest": "29.12.1",
36
- "eslint-plugin-prettier": "5.5.5",
37
- "globals": "17.4.0",
38
- "jest": "30.2.0",
39
- "jest-junit": "16.0.0",
40
- "prettier": "3.8.1",
35
+ "eslint-plugin-jest": "29.15.2",
36
+ "eslint-plugin-prettier": "5.5.6",
37
+ "globals": "17.6.0",
38
+ "jest": "30.4.2",
39
+ "jest-junit": "17.0.0",
40
+ "prettier": "3.8.4",
41
41
  "typescript": "5.9.3",
42
- "typescript-eslint": "8.53.1"
42
+ "typescript-eslint": "8.61.1"
43
43
  }
44
44
  }