gomtm 0.5.10 → 0.7.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/README.md ADDED
@@ -0,0 +1 @@
1
+ # gomtm-cli
package/bin/garagemq ADDED
Binary file
package/bin/gomtm ADDED
Binary file
package/package.json CHANGED
@@ -1,43 +1,41 @@
1
1
  {
2
2
  "name": "gomtm",
3
3
  "private": false,
4
- "version": "0.5.10",
4
+ "version": "0.7.1",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
- "files": [
12
- "dist",
13
- "src",
14
- "dist/gomtm"
15
- ],
11
+ "files": ["bin", "dist", "src"],
16
12
  "bin": {
17
- "gomtm": "./dist/gomtm"
13
+ "gomtm": "./bin/gomtm"
18
14
  },
19
- "os": [
20
- "darwin",
21
- "linux",
22
- "win32"
23
- ],
24
- "cpu": [
25
- "x64",
26
- "arm64"
27
- ],
28
15
  "sideEffects": false,
29
16
  "scripts": {
30
- "dev": "vite --port=6111",
31
- "dev:next": "next dev",
32
- "dev:ssr": "node server",
33
- "build--": "vite build --emptyOutDir=false",
34
- "build:vite": "vite build",
35
- "build:types": "vite build --types",
36
- "build:server": "vite build --ssr src/entry-server.tsx",
37
- "serve": "vite preview",
38
- "start": "vite",
39
- "page:deploy": "bun run ./src/cli/main.ts dp_mtmaiui"
17
+ "build": "echo hello"
40
18
  },
41
- "dependencies": {},
42
- "devDependencies": {}
19
+ "dependencies": {
20
+ "next": "^15"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^22",
24
+ "@types/react": "^19",
25
+ "@types/react-dom": "^19",
26
+ "tailwind-merge": "^3",
27
+ "tailwindcss": "^4",
28
+ "tailwindcss-animate": "^1",
29
+ "typescript": "^5"
30
+ },
31
+ "other": {
32
+ "styled-jsx": "^5.1.6",
33
+ "commander": "^12.1.0",
34
+ "@codemirror/lang-sql": "^6.8.0",
35
+ "tailwind-scrollbar": "^3.1.0",
36
+ "tailwind-scrollbar-hide": "^1.1.7",
37
+ "redaxios": "^0.5.1",
38
+ "superjson": "^2.2.2",
39
+ "mtxuilib": "*"
40
+ }
43
41
  }
@@ -0,0 +1,14 @@
1
+ import type { ReactNode } from "react";
2
+ export const runtime = "edge"; //nodejs
3
+ export const dynamic = "force-dynamic";
4
+
5
+ export default async function Layout(props: {
6
+ children: ReactNode;
7
+ }) {
8
+ const { children } = props;
9
+ return (
10
+ <html lang="en" suppressHydrationWarning>
11
+ <body>{children}</body>
12
+ </html>
13
+ );
14
+ }
@@ -0,0 +1,4 @@
1
+ "use client";
2
+ export default function Page(props: { params }) {
3
+ return <div className="bg-red-500 p-2">hello go mtm-cli</div>;
4
+ }
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- console.log("hello gomtm2");