@modern-admin/feature-upload 0.7.0 → 0.9.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/README.md +4 -0
- package/package.json +25 -10
package/README.md
CHANGED
|
@@ -15,6 +15,10 @@ end-to-end Zod validation.
|
|
|
15
15
|
bun add @modern-admin/feature-upload
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
The root feature is core-only. Install the optional Nest/Busboy peers when
|
|
19
|
+
using `@modern-admin/feature-upload/nest`, or the matching GraphQL/AWS peers
|
|
20
|
+
when using those integration entry points.
|
|
21
|
+
|
|
18
22
|
## Documentation
|
|
19
23
|
|
|
20
24
|
Setup guides, architecture, and usage examples live in the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modern-admin/feature-upload",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "File upload feature plugin for Modern Admin (local + S3 providers).",
|
|
5
5
|
"homepage": "https://github.com/modern-admin/modern-admin/tree/main/packages/feature-upload#readme",
|
|
6
6
|
"keywords": [
|
|
@@ -62,16 +62,11 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@modern-admin/core": "^0.
|
|
66
|
-
"@nestjs/common": "^11.2.1",
|
|
67
|
-
"@nestjs/core": "^11.2.1",
|
|
68
|
-
"busboy": "^1.6.0",
|
|
69
|
-
"reflect-metadata": "^0.2.2",
|
|
70
|
-
"rxjs": "^7.8.2"
|
|
65
|
+
"@modern-admin/core": "^0.9.0"
|
|
71
66
|
},
|
|
72
67
|
"devDependencies": {
|
|
73
|
-
"@modern-admin/graphql": "0.
|
|
74
|
-
"@modern-admin/nest": "0.
|
|
68
|
+
"@modern-admin/graphql": "0.9.0",
|
|
69
|
+
"@modern-admin/nest": "0.9.0",
|
|
75
70
|
"@modern-admin/tsconfig": "0.4.0",
|
|
76
71
|
"@nestjs/swagger": "^11.4.7",
|
|
77
72
|
"@types/bun": "^1.3.14",
|
|
@@ -81,8 +76,13 @@
|
|
|
81
76
|
},
|
|
82
77
|
"peerDependencies": {
|
|
83
78
|
"@aws-sdk/client-s3": "^3.1112.0",
|
|
79
|
+
"@nestjs/common": "^11.2.1",
|
|
80
|
+
"@nestjs/core": "^11.2.1",
|
|
84
81
|
"@nestjs/swagger": "^11.4.7",
|
|
85
|
-
"
|
|
82
|
+
"busboy": "^1.6.0",
|
|
83
|
+
"graphql": "^17.0.2",
|
|
84
|
+
"reflect-metadata": "^0.2.2",
|
|
85
|
+
"rxjs": "^7.8.2"
|
|
86
86
|
},
|
|
87
87
|
"peerDependenciesMeta": {
|
|
88
88
|
"@aws-sdk/client-s3": {
|
|
@@ -91,8 +91,23 @@
|
|
|
91
91
|
"@nestjs/swagger": {
|
|
92
92
|
"optional": true
|
|
93
93
|
},
|
|
94
|
+
"@nestjs/common": {
|
|
95
|
+
"optional": true
|
|
96
|
+
},
|
|
97
|
+
"@nestjs/core": {
|
|
98
|
+
"optional": true
|
|
99
|
+
},
|
|
100
|
+
"busboy": {
|
|
101
|
+
"optional": true
|
|
102
|
+
},
|
|
94
103
|
"graphql": {
|
|
95
104
|
"optional": true
|
|
105
|
+
},
|
|
106
|
+
"reflect-metadata": {
|
|
107
|
+
"optional": true
|
|
108
|
+
},
|
|
109
|
+
"rxjs": {
|
|
110
|
+
"optional": true
|
|
96
111
|
}
|
|
97
112
|
}
|
|
98
113
|
}
|