fullstx 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +23 -3
package/README.md CHANGED
@@ -15,9 +15,9 @@ A high-performance, custom backend framework with a static file frontend. Equipp
15
15
  Scaffold a new Fullstx project instantly:
16
16
 
17
17
  ```bash
18
- npm create fullstx-app my-project
18
+ npm create fullstx-app@latest my-project
19
19
  # or
20
- npx create-fullstx-app my-project
20
+ npx create-fullstx-app@latest my-project
21
21
  ```
22
22
 
23
23
  Then run your app:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fullstx",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A high-performance, custom backend framework with built-in hot-reload.",
5
5
  "author": "fullstx developer",
6
6
  "main": "./dist/index.js",
@@ -46,18 +46,38 @@
46
46
  "ejs": "^6.0.1",
47
47
  "fast-json-stringify": "^7.0.0",
48
48
  "jsonwebtoken": "^9.0.3",
49
- "knex": "^3.3.0",
50
49
  "multer": "^2.2.0",
51
50
  "sanitize-html": "^2.17.5",
52
51
  "swagger-ui-dist": "^5.32.8",
53
52
  "ws": "^8.21.0",
54
53
  "zod": "^4.4.3"
55
54
  },
56
- "optionalDependencies": {
55
+ "peerDependencies": {
57
56
  "@sentry/node": "^10.62.0",
58
57
  "bullmq": "^5.79.2",
58
+ "knex": "^3.3.0",
59
59
  "nodemailer": "^9.0.1",
60
60
  "redis": "^6.0.1",
61
61
  "sqlite3": "^6.0.1"
62
+ },
63
+ "peerDependenciesMeta": {
64
+ "@sentry/node": {
65
+ "optional": true
66
+ },
67
+ "bullmq": {
68
+ "optional": true
69
+ },
70
+ "knex": {
71
+ "optional": true
72
+ },
73
+ "nodemailer": {
74
+ "optional": true
75
+ },
76
+ "redis": {
77
+ "optional": true
78
+ },
79
+ "sqlite3": {
80
+ "optional": true
81
+ }
62
82
  }
63
83
  }