@hedystia/swagger 1.2.0 → 1.2.1
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 +3 -2
- package/readme.md +2 -1
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hedystia/swagger",
|
|
3
3
|
"module": "index.ts",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.1",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@types/bun": "latest",
|
|
7
7
|
"tsup": "^8.3.5"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@apidevtools/swagger-parser": "^10.1.1",
|
|
11
|
-
"hedystia": "^1.2.
|
|
11
|
+
"hedystia": "^1.2.1",
|
|
12
12
|
"openapi-types": "^12.1.3"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"private": false,
|
|
35
|
+
"license": "MIT",
|
|
35
36
|
"scripts": {
|
|
36
37
|
"build": "tsup",
|
|
37
38
|
"dev": "bun --watch --no-clear-screen run src/index.ts"
|
package/readme.md
CHANGED
|
@@ -98,7 +98,8 @@ app.use("/swagger", swaggerPlugin.plugin).listen(3000);
|
|
|
98
98
|
|
|
99
99
|
### ⚡ Performance First
|
|
100
100
|
- Bun runtime optimized
|
|
101
|
-
-
|
|
101
|
+
- Faster by default
|
|
102
|
+
- Own type validation system
|
|
102
103
|
- Faster than Express
|
|
103
104
|
- Built-in response compression
|
|
104
105
|
|