gomtm 0.0.532 → 0.0.534
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/bin/gomtm +13 -0
- package/dist/main.js +3522 -0
- package/package.json +11 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gomtm",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.534",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
|
+
"bin": {
|
|
14
|
+
"gomtm": "./dist/main.js",
|
|
15
|
+
"gomtm2": "./bin/gomtm"
|
|
16
|
+
},
|
|
13
17
|
"typesVersions": {
|
|
14
18
|
"*": {
|
|
15
19
|
"*": [
|
|
@@ -62,6 +66,7 @@
|
|
|
62
66
|
"scripts": {
|
|
63
67
|
"prepare": "panda codegen",
|
|
64
68
|
"build": "next build",
|
|
69
|
+
"gomtm": "bun src/cli/main.ts",
|
|
65
70
|
"dev": "bun with-env next dev",
|
|
66
71
|
"dev:watch": "bun concurrently 'bun run dev' 'bun run codegen:local --watch'",
|
|
67
72
|
"with-env": "dotenv -e ./env/gomtm.env --",
|
|
@@ -90,8 +95,8 @@
|
|
|
90
95
|
"jose": "^5.2.4",
|
|
91
96
|
"lru-cache": "^10.2.0",
|
|
92
97
|
"lucide-react": "^0.381.0",
|
|
93
|
-
"mtxlib": "^0.4.
|
|
94
|
-
"mtxuilib": "
|
|
98
|
+
"mtxlib": "^0.4.140",
|
|
99
|
+
"mtxuilib": "*",
|
|
95
100
|
"next": "^15.0.0-rc.0",
|
|
96
101
|
"next-nprogress-bar": "^2.3.4",
|
|
97
102
|
"next-themes": "^0.3.0",
|
|
@@ -154,6 +159,7 @@
|
|
|
154
159
|
"@testing-library/jest-dom": "^6.4.2",
|
|
155
160
|
"@testing-library/react": "^14.2.1",
|
|
156
161
|
"@testing-library/user-event": "^14.5.2",
|
|
162
|
+
"@types/bun": "^1.1.6",
|
|
157
163
|
"@types/cors": "^2.8.17",
|
|
158
164
|
"@types/debug": "^4.1.12",
|
|
159
165
|
"@types/jest": "^29.5.8",
|
|
@@ -171,6 +177,7 @@
|
|
|
171
177
|
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
172
178
|
"autoprefixer": "^10.4.16",
|
|
173
179
|
"babel-jest": "^29.7.0",
|
|
180
|
+
"bun-types": "^1.1.20",
|
|
174
181
|
"clean-webpack-plugin": "^4.0.0",
|
|
175
182
|
"concurrently": "^8.2.2",
|
|
176
183
|
"copy-webpack-plugin": "^12.0.2",
|
|
@@ -231,4 +238,4 @@
|
|
|
231
238
|
"webpack-cli": "^5.1.4",
|
|
232
239
|
"wrangler": "^3.47.1"
|
|
233
240
|
}
|
|
234
|
-
}
|
|
241
|
+
}
|