gomtm 0.7.5 → 0.8.2809

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
1
+ gomtm
package/bin/gomtm CHANGED
Binary file
package/package.json CHANGED
@@ -1,32 +1,14 @@
1
1
  {
2
+ "bin": {
3
+ "gomtm": "bin/gomtm"
4
+ },
5
+ "files": [
6
+ "bin"
7
+ ],
2
8
  "name": "gomtm",
3
9
  "private": false,
4
- "version": "0.7.5",
5
- "type": "module",
6
- "types": "./dist/index.d.ts",
7
- "main": "./dist/index.js",
8
10
  "publishConfig": {
9
11
  "access": "public"
10
12
  },
11
- "files": ["bin", "dist", "src"],
12
- "bin": {
13
- "gomtm": "./bin/gomtm"
14
- },
15
- "sideEffects": false,
16
- "scripts": {
17
- "build": "next build"
18
- },
19
- "dependencies": {},
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
- }
32
- }
13
+ "version": "0.8.2809"
14
+ }
package/bin/garagemq DELETED
Binary file
@@ -1,14 +0,0 @@
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 DELETED
@@ -1,4 +0,0 @@
1
- "use client";
2
- export default function Page(props: { params }) {
3
- return <div className="bg-red-500 p-2">hello go mtm-cli 222</div>;
4
- }