gomtm 0.5.11 → 0.7.2
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 +1 -0
- package/bin/garagemq +0 -0
- package/bin/gomtm +0 -0
- package/package.json +16 -27
- package/src/app/layout.tsx +14 -0
- package/src/app/page.tsx +4 -0
- package/src/index.ts +0 -1
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# gomtm
|
package/bin/garagemq
ADDED
|
Binary file
|
package/bin/gomtm
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,43 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gomtm",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.2",
|
|
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": "./
|
|
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
|
-
"
|
|
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": "next build"
|
|
40
18
|
},
|
|
41
19
|
"dependencies": {},
|
|
42
|
-
"devDependencies": {
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"next": "^15",
|
|
22
|
+
"react": "^19",
|
|
23
|
+
"react-dom": "^19",
|
|
24
|
+
"@types/node": "^22",
|
|
25
|
+
"@types/react": "^19",
|
|
26
|
+
"@types/react-dom": "^19",
|
|
27
|
+
"tailwind-merge": "^3",
|
|
28
|
+
"tailwindcss": "^4",
|
|
29
|
+
"tailwindcss-animate": "^1",
|
|
30
|
+
"typescript": "^5"
|
|
31
|
+
}
|
|
43
32
|
}
|
|
@@ -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
|
+
}
|
package/src/app/page.tsx
ADDED
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
console.log("hello gomtm2");
|