gomtm 0.3.215 → 0.5.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/dist/gomtm +0 -0
- package/package.json +87 -40
- package/src/index.ts +1 -0
package/dist/gomtm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,66 +1,113 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gomtm",
|
|
3
|
-
"files": ["dist"],
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"packageManager": "bun@1.1.20",
|
|
6
3
|
"private": false,
|
|
4
|
+
"version": "0.5.3",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"main": "./dist/index.js",
|
|
7
8
|
"publishConfig": {
|
|
8
9
|
"access": "public"
|
|
9
10
|
},
|
|
10
|
-
"
|
|
11
|
-
"main": "dist/gomtm",
|
|
11
|
+
"files": ["dist", "src", "dist/gomtm"],
|
|
12
12
|
"bin": {
|
|
13
|
-
"gomtm": "dist/gomtm"
|
|
13
|
+
"gomtm": "./dist/gomtm"
|
|
14
|
+
},
|
|
15
|
+
"os": ["darwin", "linux", "win32"],
|
|
16
|
+
"cpu": ["x64", "arm64"],
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "vite --port=6111",
|
|
20
|
+
"dev:next": "next dev",
|
|
21
|
+
"dev:ssr": "node server",
|
|
22
|
+
"build--": "vite build --emptyOutDir=false",
|
|
23
|
+
"build:vite": "vite build",
|
|
24
|
+
"build:types": "vite build --types",
|
|
25
|
+
"build:server": "vite build --ssr src/entry-server.tsx",
|
|
26
|
+
"serve": "vite preview",
|
|
27
|
+
"start": "vite",
|
|
28
|
+
"page:deploy": "bun run ./src/cli/main.ts dp_mtmaiui"
|
|
14
29
|
},
|
|
15
|
-
"type": "module",
|
|
16
30
|
"typesVersions": {
|
|
17
31
|
"*": {
|
|
18
|
-
"*": [
|
|
32
|
+
"*": [
|
|
33
|
+
"src/*.ts",
|
|
34
|
+
"src/*.tsx",
|
|
35
|
+
"src/*/index.ts",
|
|
36
|
+
"src/*/index.tsx",
|
|
37
|
+
"dist/*.d.ts",
|
|
38
|
+
"dist/*",
|
|
39
|
+
"dist/*/index"
|
|
40
|
+
]
|
|
19
41
|
}
|
|
20
42
|
},
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"dotenv": "^16.4.5",
|
|
23
|
-
"next": "^15.1.3",
|
|
24
|
-
"react": "^19.0.0",
|
|
25
|
-
"react-dom": "^19.0.0",
|
|
26
|
-
"tailwindcss": "^3.4.17"
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@types/node": "^22",
|
|
30
|
-
"@types/react": "^19.0.2",
|
|
31
|
-
"autoprefixer": "^10.4.19",
|
|
32
|
-
"typescript": "^5.7"
|
|
33
|
-
},
|
|
34
|
-
"engines": {
|
|
35
|
-
"node": "20.x"
|
|
36
|
-
},
|
|
37
43
|
"exports": {
|
|
38
44
|
".": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
45
|
+
"types": ["./src/index.ts", "./dist/index.js", "./dist/index.d.ts"],
|
|
46
|
+
"import": ["./src/index.ts", "./dist/index.js", "./dist/*"]
|
|
47
|
+
},
|
|
48
|
+
"./components/*/*": {
|
|
49
|
+
"types": "./dist/components/*/*.d.ts",
|
|
50
|
+
"import": "./dist/components/*/*.js",
|
|
51
|
+
"require": "./dist/components/*/*.js"
|
|
42
52
|
},
|
|
43
53
|
"./*": {
|
|
44
|
-
"
|
|
45
|
-
"./src/*.ts",
|
|
54
|
+
"types": [
|
|
46
55
|
"./src/*.tsx",
|
|
56
|
+
"./src/*.ts",
|
|
47
57
|
"./src/*/index.ts",
|
|
48
|
-
"./src
|
|
58
|
+
"./src/*.tsx",
|
|
59
|
+
"./src/*/index.tsx",
|
|
60
|
+
"./dist/*.d.ts",
|
|
61
|
+
"./dist/*/index.d.ts"
|
|
49
62
|
],
|
|
50
|
-
"
|
|
63
|
+
"import": [
|
|
64
|
+
"./src/*",
|
|
51
65
|
"./src/*.ts",
|
|
52
|
-
"./src/*/index.ts",
|
|
53
66
|
"./src/*.tsx",
|
|
54
|
-
"./src/*/index.
|
|
67
|
+
"./src/*/index.ts",
|
|
68
|
+
"./src/*/index.tsx",
|
|
69
|
+
"./dist/*/index.js",
|
|
70
|
+
"./dist/*.js"
|
|
55
71
|
]
|
|
56
72
|
}
|
|
57
73
|
},
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
74
|
+
"dependencies": {
|
|
75
|
+
"@codemirror/lang-sql": "^6.8.0",
|
|
76
|
+
"@tanstack/react-query": "^5.62.14",
|
|
77
|
+
"@tanstack/react-query-devtools": "^5.62.14",
|
|
78
|
+
"@tanstack/react-query-next-experimental": "^5.62.14",
|
|
79
|
+
"@tanstack/react-router": "^1.93.0",
|
|
80
|
+
"@tanstack/router-devtools": "^1.93.0",
|
|
81
|
+
"@tanstack/router-plugin": "^1.93.0",
|
|
82
|
+
"@tanstack/start": "^1.93.0",
|
|
83
|
+
"get-port": "^7.1.0",
|
|
84
|
+
"mtmaiapi": "*",
|
|
85
|
+
"mtxuilib": "*",
|
|
86
|
+
"next": "^15.1.3",
|
|
87
|
+
"react": "^19",
|
|
88
|
+
"react-dom": "^19",
|
|
89
|
+
"redaxios": "^0.5.1",
|
|
90
|
+
"superjson": "^2.2.2",
|
|
91
|
+
"unenv": "^1.10.0",
|
|
92
|
+
"zod": "^3.23.8"
|
|
93
|
+
},
|
|
94
|
+
"devDependencies": {
|
|
95
|
+
"@babel/core": "^7.26.0",
|
|
96
|
+
"@babel/generator": "^7.26.3",
|
|
97
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
98
|
+
"@types/express": "^4.17.21",
|
|
99
|
+
"@types/react": "^19",
|
|
100
|
+
"@types/react-dom": "^19",
|
|
101
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
102
|
+
"autoprefixer": "^10.4.20",
|
|
103
|
+
"compression": "^1.7.5",
|
|
104
|
+
"express": "^4.21.2",
|
|
105
|
+
"isbot": "^5.1.17",
|
|
106
|
+
"node-fetch": "^3.3.2",
|
|
107
|
+
"postcss": "^8.4.49",
|
|
108
|
+
"serve-static": "^1.16.2",
|
|
109
|
+
"tailwindcss": "^3.4.17",
|
|
110
|
+
"typescript": "^5.7.2",
|
|
111
|
+
"vite-plugin-ssr": "^0.4.142"
|
|
65
112
|
}
|
|
66
113
|
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log("hello gomtm");
|