gomtm 0.0.532 → 0.0.533

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