gomtm 0.7.1 → 0.7.3

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 CHANGED
@@ -1 +1 @@
1
- # gomtm-cli
1
+ # gomtm
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gomtm",
3
3
  "private": false,
4
- "version": "0.7.1",
4
+ "version": "0.7.3",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.js",
@@ -14,12 +14,13 @@
14
14
  },
15
15
  "sideEffects": false,
16
16
  "scripts": {
17
- "build": "echo hello"
18
- },
19
- "dependencies": {
20
- "next": "^15"
17
+ "build": "next build"
21
18
  },
19
+ "dependencies": {},
22
20
  "devDependencies": {
21
+ "next": "^15",
22
+ "react": "^19",
23
+ "react-dom": "^19",
23
24
  "@types/node": "^22",
24
25
  "@types/react": "^19",
25
26
  "@types/react-dom": "^19",
@@ -27,15 +28,5 @@
27
28
  "tailwindcss": "^4",
28
29
  "tailwindcss-animate": "^1",
29
30
  "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
31
  }
41
32
  }
@@ -1,6 +1,6 @@
1
1
  import type { ReactNode } from "react";
2
- export const runtime = "edge"; //nodejs
3
- export const dynamic = "force-dynamic";
2
+ // export const runtime = "edge"; //nodejs
3
+ // export const dynamic = "force-dynamic";
4
4
 
5
5
  export default async function Layout(props: {
6
6
  children: ReactNode;
package/src/app/page.tsx CHANGED
@@ -1,4 +1,4 @@
1
1
  "use client";
2
2
  export default function Page(props: { params }) {
3
- return <div className="bg-red-500 p-2">hello go mtm-cli</div>;
3
+ return <div className="bg-red-500 p-2">hello go mtm-cli 222</div>;
4
4
  }