@mahameru/cli 0.0.18 → 0.0.20

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,23 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ viewBox="0 0 64 64"
4
+ fill="none"
5
+ >
6
+ <defs>
7
+ <linearGradient id="favicon-mahameru-blue" x1="12" y1="8" x2="52" y2="58" gradientUnits="userSpaceOnUse">
8
+ <stop offset="0%" stop-color="#7dd3fc" />
9
+ <stop offset="45%" stop-color="#2563eb" />
10
+ <stop offset="100%" stop-color="#0f766e" />
11
+ </linearGradient>
12
+ <linearGradient id="favicon-mahameru-snow" x1="25" y1="8" x2="40" y2="35" gradientUnits="userSpaceOnUse">
13
+ <stop offset="0%" stop-color="#ffffff" />
14
+ <stop offset="100%" stop-color="#bae6fd" />
15
+ </linearGradient>
16
+ </defs>
17
+
18
+ <rect width="64" height="64" rx="18" fill="#04110d" />
19
+ <path d="M32 8L56 54H8L32 8Z" fill="url(#favicon-mahameru-blue)" />
20
+ <path d="M32 8L41.5 25.5L34.5 22L29.5 31L22.5 24.5L32 8Z" fill="url(#favicon-mahameru-snow)" fill-opacity="0.96" />
21
+ <path d="M18 54L31 31.5L39.5 43.5L46.5 36.5L56 54H18Z" fill="#042f2e" fill-opacity="0.7" />
22
+ <path d="M11 54H53" stroke="#93c5fd" stroke-width="2" stroke-linecap="round" stroke-opacity="0.75" />
23
+ </svg>
package/mpm/index.html ADDED
@@ -0,0 +1,15 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>MahameruJS Process Manager</title>
8
+ <script type="module" crossorigin src="/assets/index-C8qHc9ZS.js"></script>
9
+ <link rel="modulepreload" crossorigin href="/assets/jsx-runtime-DIBGU2nq.js">
10
+ <link rel="stylesheet" crossorigin href="/assets/index-SBk3lk5W.css">
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ </body>
15
+ </html>
package/package.json CHANGED
@@ -1,60 +1,38 @@
1
- {
2
- "name": "@mahameru/cli",
3
- "version": "0.0.18",
4
- "description": "MahameruJS CLI Utility - The command-line interface for running and building Mahameru-based applications",
5
- "bin": {
6
- "mahameru": "./cli.js"
7
- },
8
- "scripts": {
9
- "typecheck": "tsc --noEmit --project tsconfig.json",
10
- "clean": "rimraf dist",
11
- "build": "npm run clean && webpack",
12
- "build:install": "npm run clean && webpack && cd dist && npm i -g ."
13
- },
14
- "keywords": [
15
- "mahameruJS",
16
- "mahameru",
17
- "cli",
18
- "framework",
19
- "nodejs",
20
- "typescript",
21
- "web-server",
22
- "build-tool",
23
- "developer-tools",
24
- "process-manager"
25
- ],
26
- "author": "Bintan <hello@bintvn.co>",
27
- "license": "ISC",
28
- "files": [
29
- "bin.js",
30
- "mpm"
31
- ],
32
- "engines": {
33
- "node": ">=20.6.0"
34
- },
35
- "dependencies": {
36
- "commander": "^15.0.0",
37
- "ora": "^9.4.1",
38
- "picocolors": "^1.1.1",
39
- "porterman": "^0.0.3",
40
- "socket.io": "^4.8.3",
41
- "tsc-alias": "^1.8.17",
42
- "tsx": "^4.22.4"
43
- },
44
- "devDependencies": {
45
- "@types/node": "^26.0.0",
46
- "@types/socket.io": "^3.0.1",
47
- "@types/webpack-node-externals": "^3.0.4",
48
- "boxen": "^8.0.1",
49
- "rimraf": "^6.1.3",
50
- "strip-ansi": "^7.2.0",
51
- "terser-webpack-plugin": "^5.6.1",
52
- "ts-loader": "^9.6.1",
53
- "ts-node": "^10.9.2",
54
- "tsconfig-paths-webpack-plugin": "^4.2.0",
55
- "typescript": "^6.0.3",
56
- "webpack": "^5.107.2",
57
- "webpack-cli": "^7.0.3",
58
- "webpack-node-externals": "^3.0.0"
59
- }
60
- }
1
+ {
2
+ "name": "@mahameru/cli",
3
+ "version": "0.0.20",
4
+ "description": "MahameruJS CLI Utility - The command-line interface for running and building Mahameru-based applications",
5
+ "bin": {
6
+ "mahameru": "./cli.js"
7
+ },
8
+ "keywords": [
9
+ "mahameruJS",
10
+ "mahameru",
11
+ "cli",
12
+ "framework",
13
+ "nodejs",
14
+ "typescript",
15
+ "web-server",
16
+ "build-tool",
17
+ "developer-tools",
18
+ "process-manager"
19
+ ],
20
+ "author": "Bintan <hello@bintvn.co>",
21
+ "license": "ISC",
22
+ "files": [
23
+ "bin.js",
24
+ "mpm"
25
+ ],
26
+ "engines": {
27
+ "node": ">=20.6.0"
28
+ },
29
+ "dependencies": {
30
+ "commander": "^15.0.0",
31
+ "ora": "^9.4.1",
32
+ "picocolors": "^1.1.1",
33
+ "porterman": "^0.0.3",
34
+ "socket.io": "^4.8.3",
35
+ "tsc-alias": "^1.8.17",
36
+ "tsx": "^4.22.4"
37
+ }
38
+ }