alepha 0.8.1 → 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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "alepha",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22.0.0"
7
7
  },
8
8
  "license": "MIT",
9
- "description": "TypeScript framework for building full-stack apps with strict conventions, and React-based SPA or SSR without filesystem-based routing.",
9
+ "description": "Alepha is a convention-driven TypeScript framework for building robust, end-to-end type-safe applications, from serverless APIs to full-stack React apps.",
10
10
  "homepage": "https://github.com/feunard/alepha",
11
11
  "repository": {
12
12
  "type": "git",
@@ -15,46 +15,48 @@
15
15
  "main": "./core.js",
16
16
  "types": "./core.d.ts",
17
17
  "dependencies": {
18
- "@alepha/batch": "0.8.1",
19
- "@alepha/cache": "0.8.1",
20
- "@alepha/cache-redis": "0.8.1",
21
- "@alepha/command": "0.8.1",
22
- "@alepha/core": "0.8.1",
23
- "@alepha/datetime": "0.8.1",
24
- "@alepha/file": "0.8.1",
25
- "@alepha/lock": "0.8.1",
26
- "@alepha/lock-redis": "0.8.1",
27
- "@alepha/postgres": "0.8.1",
28
- "@alepha/queue": "0.8.1",
29
- "@alepha/queue-redis": "0.8.1",
30
- "@alepha/react": "0.8.1",
31
- "@alepha/react-auth": "0.8.1",
32
- "@alepha/react-head": "0.8.1",
33
- "@alepha/redis": "0.8.1",
34
- "@alepha/retry": "0.8.1",
35
- "@alepha/router": "0.8.1",
36
- "@alepha/scheduler": "0.8.1",
37
- "@alepha/security": "0.8.1",
38
- "@alepha/server": "0.8.1",
39
- "@alepha/server-cache": "0.8.1",
40
- "@alepha/server-compress": "0.8.1",
41
- "@alepha/server-cookies": "0.8.1",
42
- "@alepha/server-cors": "0.8.1",
43
- "@alepha/server-health": "0.8.1",
44
- "@alepha/server-helmet": "0.8.1",
45
- "@alepha/server-links": "0.8.1",
46
- "@alepha/server-metrics": "0.8.1",
47
- "@alepha/server-multipart": "0.8.1",
48
- "@alepha/server-proxy": "0.8.1",
49
- "@alepha/server-static": "0.8.1",
50
- "@alepha/server-swagger": "0.8.1",
51
- "@alepha/testing": "0.8.1",
52
- "@alepha/topic": "0.8.1",
53
- "@alepha/topic-redis": "0.8.1",
54
- "@alepha/vite": "0.8.1"
18
+ "@alepha/batch": "0.9.0",
19
+ "@alepha/bucket": "0.9.0",
20
+ "@alepha/cache": "0.9.0",
21
+ "@alepha/cache-redis": "0.9.0",
22
+ "@alepha/command": "0.9.0",
23
+ "@alepha/core": "0.9.0",
24
+ "@alepha/datetime": "0.9.0",
25
+ "@alepha/file": "0.9.0",
26
+ "@alepha/lock": "0.9.0",
27
+ "@alepha/lock-redis": "0.9.0",
28
+ "@alepha/postgres": "0.9.0",
29
+ "@alepha/queue": "0.9.0",
30
+ "@alepha/queue-redis": "0.9.0",
31
+ "@alepha/react": "0.9.0",
32
+ "@alepha/react-auth": "0.9.0",
33
+ "@alepha/react-head": "0.9.0",
34
+ "@alepha/redis": "0.9.0",
35
+ "@alepha/retry": "0.9.0",
36
+ "@alepha/router": "0.9.0",
37
+ "@alepha/scheduler": "0.9.0",
38
+ "@alepha/security": "0.9.0",
39
+ "@alepha/server": "0.9.0",
40
+ "@alepha/server-cache": "0.9.0",
41
+ "@alepha/server-compress": "0.9.0",
42
+ "@alepha/server-cookies": "0.9.0",
43
+ "@alepha/server-cors": "0.9.0",
44
+ "@alepha/server-health": "0.9.0",
45
+ "@alepha/server-helmet": "0.9.0",
46
+ "@alepha/server-links": "0.9.0",
47
+ "@alepha/server-metrics": "0.9.0",
48
+ "@alepha/server-multipart": "0.9.0",
49
+ "@alepha/server-proxy": "0.9.0",
50
+ "@alepha/server-security": "0.9.0",
51
+ "@alepha/server-static": "0.9.0",
52
+ "@alepha/server-swagger": "0.9.0",
53
+ "@alepha/testing": "0.9.0",
54
+ "@alepha/topic": "0.9.0",
55
+ "@alepha/topic-redis": "0.9.0",
56
+ "@alepha/vite": "0.9.0"
55
57
  },
56
58
  "devDependencies": {
57
- "tsdown": "^0.12.9"
59
+ "tsdown": "^0.13.0"
58
60
  },
59
61
  "scripts": {
60
62
  "build": "node build.ts"
@@ -75,6 +77,11 @@
75
77
  "require": "./batch.cjs",
76
78
  "types": "./batch.d.ts"
77
79
  },
80
+ "./bucket": {
81
+ "import": "./bucket.js",
82
+ "require": "./bucket.cjs",
83
+ "types": "./bucket.d.ts"
84
+ },
78
85
  "./cache": {
79
86
  "import": "./cache.js",
80
87
  "require": "./cache.cjs",
@@ -225,6 +232,11 @@
225
232
  "require": "./server/proxy.cjs",
226
233
  "types": "./server/proxy.d.ts"
227
234
  },
235
+ "./server/security": {
236
+ "import": "./server/security.js",
237
+ "require": "./server/security.cjs",
238
+ "types": "./server/security.d.ts"
239
+ },
228
240
  "./server/static": {
229
241
  "import": "./server/static.js",
230
242
  "require": "./server/static.cjs",
@@ -259,6 +271,7 @@
259
271
  "keywords": [
260
272
  "alepha",
261
273
  "batch",
274
+ "bucket",
262
275
  "cache",
263
276
  "cache-redis",
264
277
  "command",
@@ -289,6 +302,7 @@
289
302
  "server-metrics",
290
303
  "server-multipart",
291
304
  "server-proxy",
305
+ "server-security",
292
306
  "server-static",
293
307
  "server-swagger",
294
308
  "testing",