wynkjs 1.0.6 → 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "wynkjs",
3
- "version": "1.0.6",
4
- "description": "A high-performance TypeScript framework built on Elysia for Bun with elegant decorator-based architecture - 10x faster than Express/NestJS",
3
+ "version": "1.0.8",
4
+ "description": "A high-performance TypeScript framework built on Elysia for Bun with elegant decorator-based architecture, built-in compression, and plugin system - 10x faster than Express/NestJS",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -27,7 +27,12 @@
27
27
  "dependency-injection",
28
28
  "rest-api",
29
29
  "backend",
30
- "server"
30
+ "server",
31
+ "compression",
32
+ "gzip",
33
+ "brotli",
34
+ "plugins",
35
+ "middleware"
31
36
  ],
32
37
  "author": "Alam Jamal alamjamal88@gmail.com",
33
38
  "license": "MIT",
@@ -46,7 +51,9 @@
46
51
  "test:all": "bun test tests/",
47
52
  "test:core": "bash tests/test-core.sh",
48
53
  "test:watch": "bun test tests/ --watch",
49
- "test:coverage": "bun test tests/ --coverage"
54
+ "test:coverage": "bun test tests/ --coverage",
55
+ "test:ci": "bun test tests/ --coverage",
56
+ "ci": "bun test tests/ --coverage"
50
57
  },
51
58
  "peerDependencies": {},
52
59
  "devDependencies": {
@@ -68,9 +75,10 @@
68
75
  "LICENSE"
69
76
  ],
70
77
  "dependencies": {
78
+ "@elysiajs/cors": "^1.4.0",
79
+ "@elysiajs/swagger": "^1.3.1",
71
80
  "elysia": "^1.0.0",
72
81
  "reflect-metadata": "^0.2.2",
73
- "@elysiajs/cors": "^1.4.0",
74
82
  "tsyringe": "^4.10.0"
75
83
  }
76
84
  }