aegisnode 0.0.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.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { runCli } from '../src/cli/index.js';
4
+
5
+ runCli(process.argv.slice(2)).catch((error) => {
6
+ const message = error?.stack || error?.message || String(error);
7
+ console.error(message);
8
+ process.exitCode = 1;
9
+ });
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "aegisnode",
3
+ "version": "0.0.1",
4
+ "description": "A view-first Node.js framework for modular web apps and JSON APIs with CLI scaffolding, runtime injection, auth, uploads, i18n, mail, and WebSocket support.",
5
+ "type": "module",
6
+ "main": "./src/index.js",
7
+ "exports": {
8
+ ".": "./src/index.js",
9
+ "./runtime": "./src/runtime/kernel.js"
10
+ },
11
+ "bin": {
12
+ "aegisnode": "./bin/aegisnode.js",
13
+ "my-node-framework": "./bin/aegisnode.js"
14
+ },
15
+ "scripts": {
16
+ "test": "node ./scripts/smoke-test.js"
17
+ },
18
+ "files": [
19
+ "bin",
20
+ "src",
21
+ "scripts",
22
+ "README.md"
23
+ ],
24
+ "keywords": [
25
+ "aegisnode",
26
+ "modular",
27
+ "framework",
28
+ "nodejs",
29
+ "express",
30
+ "web-framework",
31
+ "api",
32
+ "cli",
33
+ "scaffolding",
34
+ "dependency-injection",
35
+ "i18n",
36
+ "auth",
37
+ "uploads",
38
+ "websocket"
39
+ ],
40
+ "author": "",
41
+ "license": "MIT",
42
+ "dependencies": {
43
+ "ejs": "^3.1.10",
44
+ "express": "^4.21.2",
45
+ "express-rate-limit": "^8.3.1",
46
+ "helmet": "^8.1.0",
47
+ "jlive": "^0.1.2",
48
+ "jsonwebtoken": "^9.0.2",
49
+ "mongoose": "^8.12.1",
50
+ "multer": "^2.1.0",
51
+ "nodemailer": "^8.0.2",
52
+ "querymesh": "^0.0.7",
53
+ "socket.io": "^4.8.1",
54
+ "swagger-ui-express": "^5.0.1"
55
+ }
56
+ }