gomtm 0.0.581 → 0.0.584

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 (47) hide show
  1. package/README.md +11 -0
  2. package/bin/gomtm +16 -0
  3. package/dist/404.html +1 -1
  4. package/dist/_next/static/L1rPGE6x398scKJmHM8RK/_buildManifest.js +1 -0
  5. package/dist/_next/static/chunks/23-bc0704c1190bca24.js +2 -0
  6. package/dist/_next/static/chunks/app/_not-found/page-05886c10710171db.js +1 -0
  7. package/dist/_next/static/chunks/app/layout-719248fe6d598299.js +1 -0
  8. package/dist/_next/static/chunks/app/page-ffc06cd4473239c6.js +1 -0
  9. package/dist/_next/static/chunks/fd9d1056-2821b0f0cabcd8bd.js +1 -0
  10. package/dist/_next/static/chunks/framework-55036bba3bcb96d0.js +25 -0
  11. package/dist/_next/static/chunks/main-app-551179e7fc28f97f.js +1 -0
  12. package/dist/_next/static/chunks/main-b8d247b23699336c.js +1 -0
  13. package/dist/_next/static/chunks/pages/_app-6a626577ffa902a4.js +1 -0
  14. package/dist/_next/static/chunks/pages/_error-1be831200e60c5c0.js +1 -0
  15. package/dist/_next/static/chunks/webpack-440ec99b2a3d9b29.js +1 -0
  16. package/dist/_next/static/css/5f366cdf470b610d.css +2 -0
  17. package/dist/index.html +1 -1
  18. package/dist/index.txt +4 -5
  19. package/package.json +114 -226
  20. package/dist/_next/static/chunks/182-9c4ae48b33d92fc9.js +0 -34
  21. package/dist/_next/static/chunks/4bd1b696-7eb3c3725592440d.js +0 -1
  22. package/dist/_next/static/chunks/app/_not-found/page-13ab98633c09e740.js +0 -1
  23. package/dist/_next/static/chunks/app/layout-2d894da58bd3f59d.js +0 -1
  24. package/dist/_next/static/chunks/app/page-ecce11ed3bdb5753.js +0 -1
  25. package/dist/_next/static/chunks/framework-a7d9620873c963b8.js +0 -25
  26. package/dist/_next/static/chunks/main-app-07d4a8c85539486d.js +0 -1
  27. package/dist/_next/static/chunks/main-da48d4e164c2a2a6.js +0 -1
  28. package/dist/_next/static/chunks/pages/_app-daa5cb8560567b4d.js +0 -1
  29. package/dist/_next/static/chunks/pages/_error-4cacf33de97c3163.js +0 -1
  30. package/dist/_next/static/chunks/webpack-4662a015f121360f.js +0 -1
  31. package/dist/_next/static/css/2aed00a1877cdc43.css +0 -3
  32. package/dist/_next/static/css/b2166ec029523558.css +0 -2
  33. package/dist/_next/static/css/ed97deddab77a906.css +0 -1
  34. package/dist/_next/static/css/f30f390516962cba.css +0 -1
  35. package/dist/_next/static/fifSMghR7yPaXbAZSk6r-/_buildManifest.js +0 -1
  36. package/dist/_next/static/media/.567f8195.svg +0 -1
  37. package/dist/_next/static/media/.66e49cfb.svg +0 -1
  38. package/dist/_next/static/media/34dd45dcdd6d47ee-s.woff2 +0 -0
  39. package/dist/_next/static/media/86fdec36ddd9097e-s.p.woff2 +0 -0
  40. package/dist/_next/static/media/9e58c89b9633dcad-s.woff2 +0 -0
  41. package/dist/_next/static/media/a1ab2e69d2f53384-s.woff2 +0 -0
  42. package/dist/_next/static/media/c4a41ea065a0023c-s.woff2 +0 -0
  43. package/dist/_next/static/media/de2ba2ebf355004e-s.woff2 +0 -0
  44. package/dist/_next/static/media/e11418ac562b8ac1-s.p.woff2 +0 -0
  45. package/dist/gomtm +0 -0
  46. package/dist/mtm_images/placeholder-user.jpg +0 -0
  47. /package/dist/_next/static/{fifSMghR7yPaXbAZSk6r- → L1rPGE6x398scKJmHM8RK}/_ssgManifest.js +0 -0
package/package.json CHANGED
@@ -1,227 +1,115 @@
1
1
  {
2
- "name": "gomtm",
3
- "version": "0.0.581",
4
- "license": "MIT",
5
- "type": "module",
6
- "private": false,
7
- "publishConfig": {
8
- "access": "public"
9
- },
10
- "files": [
11
- "dist"
12
- ],
13
- "bin": {
14
- "gomtm": "./bin/gomtm",
15
- "gomtm2": "./dist/main.js"
16
- },
17
- "typesVersions": {
18
- "*": {
19
- "*": [
20
- "src/*.ts",
21
- "src/*.tsx",
22
- "src/*/index.ts",
23
- "src/*/index.tsx"
24
- ]
25
- }
26
- },
27
- "exports": {
28
- ".": {
29
- "types": [
30
- "./src/index.ts",
31
- "./dist/esm/index.js"
32
- ],
33
- "import": [
34
- "./src/index.ts",
35
- "./dist/esm/index.js"
36
- ],
37
- "require": [
38
- "./dist/esm/index.js"
39
- ]
40
- },
41
- "./*": {
42
- "types": [
43
- "./src/*.ts",
44
- "./src/*/index.ts",
45
- "./src/*.tsx",
46
- "./src/*/index.tsx"
47
- ],
48
- "import": [
49
- "./src/*.ts",
50
- "./src/*.tsx",
51
- "./src/*/index.ts",
52
- "./src/*/index.tsx"
53
- ]
54
- },
55
- "./tailwind": {
56
- "import": [
57
- "./dist/tailwind.cjs",
58
- "./src/tailwind.cjs"
59
- ],
60
- "require": [
61
- "./dist/tailwind.cjs",
62
- "./src/tailwind.cjs"
63
- ]
64
- }
65
- },
66
- "scripts": {
67
- "build": "next build",
68
- "build2": "next build",
69
- "gomtm": "bun src/cli/main.ts",
70
- "dev": "next dev",
71
- "with-env": "dotenv -e ./env/gomtm.env --"
72
- },
73
- "dependencies": {
74
- "@as-integrations/next": "^3.0.0",
75
- "@extractus/article-extractor": "^8.0.10",
76
- "@parcel/watcher": "^2.4.0",
77
- "@tanstack/react-query": "^5.45.1",
78
- "@tanstack/react-query-devtools": "^5.45.1",
79
- "@tanstack/react-query-next-experimental": "^5.45.1",
80
- "commander": "^12.0.0",
81
- "edge-runtime": "^2.5.9",
82
- "geist": "^1.2.2",
83
- "github-slugger": "^2.0.0",
84
- "graphql": "^16.9.0",
85
- "graphql-request": "6.1.0",
86
- "html-differ": "^1.4.0",
87
- "inngest": "^3.19.18",
88
- "jose": "^5.2.4",
89
- "lru-cache": "^10.2.0",
90
- "lucide-react": "^0.381.0",
91
- "mtxlib": "^0.4.140",
92
- "mtxuilib": "*",
93
- "next": "^15.0.0-rc.0",
94
- "next-nprogress-bar": "^2.3.4",
95
- "next-themes": "^0.3.0",
96
- "path-to-regexp": "6.2.1",
97
- "pliny": "0.2.0",
98
- "react": "^19.0.0-rc-8971381549-20240625",
99
- "react-dom": "^19.0.0-rc-8971381549-20240625",
100
- "react-error-boundary": "^4.0.11",
101
- "react-hook-form": "^7.49.3",
102
- "react-hotkeys-hook": "^4.5.0",
103
- "react-relay": "^17.0.0",
104
- "sonner": "^1.4.3",
105
- "stable-hash": "^0.0.4",
106
- "ulid": "2.3.0",
107
- "universal-cookie": "^7.1.4",
108
- "winston": "^3.13.0",
109
- "zod": "^3.22.2",
110
- "zustand": "^4.5.2"
111
- },
112
- "devDependencies": {
113
- "@babel/core": "^7.24.0",
114
- "@bufbuild/buf": "^1.30.0",
115
- "@bufbuild/jest-environment-jsdom": "^0.1.1",
116
- "@bufbuild/protoc-gen-es": "^1.7.2",
117
- "@bufbuild/protoplugin": "^1.8.0",
118
- "@changesets/cli": "^2.27.1",
119
- "@changesets/get-github-info": "^0.6.0",
120
- "@chromatic-com/storybook": "^1.2.18",
121
- "@cloudflare/kv-asset-handler": "^0.2.0",
122
- "@cloudflare/workers-types": "^4.20240222.0",
123
- "@edge-runtime/jest-environment": "^2.3.10",
124
- "@edge-runtime/jest-expect": "^1.2.0",
125
- "@edge-runtime/ponyfill": "^2.4.2",
126
- "@graphql-typed-document-node/core": "^3.2.0",
127
- "@jest/globals": "^29.7.0",
128
- "@netlify/plugin-nextjs": "^4.29.2",
129
- "@pandacss/dev": "^0.41.0",
130
- "@playwright/test": "^1.28.1",
131
- "@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
132
- "@storybook/addon-essentials": "^8.0.0",
133
- "@storybook/addon-interactions": "^8.0.0",
134
- "@storybook/addon-links": "^8.0.0",
135
- "@storybook/addon-onboarding": "^8.0.0",
136
- "@storybook/addon-themes": "^8.0.0",
137
- "@storybook/blocks": "^8.0.0",
138
- "@storybook/client-logger": "next",
139
- "@storybook/nextjs": "^8.0.0",
140
- "@storybook/react": "^8.0.0",
141
- "@storybook/test": "^8.0.0",
142
- "@storybook/test-runner": "^0.17.0",
143
- "@tailwindcss/forms": "^0.5.3",
144
- "@tailwindcss/typography": "^0.5.10",
145
- "@tanstack/react-table": "^8.9.1",
146
- "@testing-library/dom": "^9.3.4",
147
- "@testing-library/jest-dom": "^6.4.2",
148
- "@testing-library/react": "^14.2.1",
149
- "@testing-library/user-event": "^14.5.2",
150
- "@types/bun": "^1.1.6",
151
- "@types/cors": "^2.8.17",
152
- "@types/debug": "^4.1.12",
153
- "@types/jest": "^29.5.8",
154
- "@types/lodash": "^4.14.202",
155
- "@types/node": "^20.14.6",
156
- "@types/nprogress": "^0.2.3",
157
- "@types/prismjs": "^1.26.3",
158
- "@types/react": "^18.2.64",
159
- "@types/react-dom": "^18",
160
- "@types/react-syntax-highlighter": "^15.5.11",
161
- "@types/video.js": "^7.3.56",
162
- "@types/webpack-env": "^1.18.0",
163
- "@typescript-eslint/eslint-plugin": "^6.0.0",
164
- "@typescript-eslint/parser": "^6.0.0",
165
- "@vitejs/plugin-react-swc": "^3.6.0",
166
- "autoprefixer": "^10.4.16",
167
- "babel-jest": "^29.7.0",
168
- "bun-types": "^1.1.20",
169
- "clean-webpack-plugin": "^4.0.0",
170
- "concurrently": "^8.2.2",
171
- "copy-webpack-plugin": "^12.0.2",
172
- "cross-env": "^7.0.3",
173
- "css-loader": "^6.10.0",
174
- "dotenv": "^16.4.5",
175
- "dotenv-cli": "^7.4.1",
176
- "eslint": "^9.7.0",
177
- "eslint-config-next": "^15.0.0-rc.0",
178
- "eslint-config-prettier": "latest",
179
- "eslint-import-resolver-alias": "^1.1.2",
180
- "eslint-plugin-import": "^2.26.0",
181
- "eslint-plugin-jest": "latest",
182
- "eslint-plugin-prettier": "latest",
183
- "eslint-plugin-react": "^7.31.10",
184
- "eslint-plugin-react-hooks": "latest",
185
- "eslint-plugin-storybook": "^0.8.0",
186
- "eslint-plugin-tailwindcss": "latest",
187
- "eslint-plugin-testing-library": "latest",
188
- "eslint-plugin-unused-imports": "latest",
189
- "extract-files": "^13.0.0",
190
- "fork-ts-checker-webpack-plugin": "^7.2.13",
191
- "jsdom": "^24.0.0",
192
- "less": "^4.1.3",
193
- "less-loader": "^11.1.0",
194
- "mini-css-extract-plugin": "^2.7.6",
195
- "postcss": "^8.4.38",
196
- "postcss-loader": "^6.2.1",
197
- "postcss-preset-env": "^9.3.0",
198
- "prettier": "^3.2.5",
199
- "puppeteer": "^22.4.1",
200
- "react-refresh": "^0.14.0",
201
- "react-test-renderer": "^18.2.0",
202
- "relay-compiler": "^17.0.0",
203
- "rimraf": "^5.0.5",
204
- "sass": "^1.55.0",
205
- "sass-loader": "^13.1.0",
206
- "slate-hyperscript": "^0.100.0",
207
- "storybook": "^8.0.0",
208
- "studio": "^0.13.5",
209
- "style-loader": "^3.3.4",
210
- "tailwind-merge": "^2.2.1",
211
- "tailwindcss": "^3.3.0",
212
- "tailwindcss-animate": "^1.0.7",
213
- "ts-jest": "^29.0.3",
214
- "ts-loader": "^9.5.1",
215
- "ts-node": "^10.9.1",
216
- "tsc-alias": "^1.8.8",
217
- "tsx": "^4.7.1",
218
- "typescript": "^5.5.2",
219
- "vite": "^5.1.4",
220
- "vite-plugin-dts": "^3.7.3",
221
- "vitest": "^1.3.1",
222
- "wait-on": "^7.2.0",
223
- "webpack": "^5.89.0",
224
- "webpack-cli": "^5.1.4",
225
- "wrangler": "^3.47.1"
226
- }
227
- }
2
+ "name": "gomtm",
3
+ "version": "0.0.584",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "private": false,
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "files": ["dist"],
11
+ "bin": {
12
+ "gomtm": "./bin/gomtm",
13
+ "gomtm2": "./dist/main.js"
14
+ },
15
+ "typesVersions": {
16
+ "*": {
17
+ "*": ["src/*.ts", "src/*.tsx", "src/*/index.ts", "src/*/index.tsx"]
18
+ }
19
+ },
20
+ "exports": {
21
+ ".": {
22
+ "types": ["./src/index.ts", "./dist/esm/index.js"],
23
+ "import": ["./src/index.ts", "./dist/esm/index.js"],
24
+ "require": ["./dist/esm/index.js"]
25
+ },
26
+ "./*": {
27
+ "types": [
28
+ "./src/*.ts",
29
+ "./src/*/index.ts",
30
+ "./src/*.tsx",
31
+ "./src/*/index.tsx"
32
+ ],
33
+ "import": [
34
+ "./src/*.ts",
35
+ "./src/*.tsx",
36
+ "./src/*/index.ts",
37
+ "./src/*/index.tsx"
38
+ ]
39
+ },
40
+ "./tailwind": {
41
+ "import": ["./dist/tailwind.cjs", "./src/tailwind.cjs"],
42
+ "require": ["./dist/tailwind.cjs", "./src/tailwind.cjs"]
43
+ }
44
+ },
45
+ "scripts": {
46
+ "build": "next build",
47
+ "format:check": "turbo format:check",
48
+ "format:write": "turbo format:write",
49
+ "with-env": "dotenv -e ./env/gomtm.env --",
50
+ "gomtm": "bun src/cli/main.ts",
51
+ "test": "bun x turbo test",
52
+ "test:watch": "bun x turbo test:watch --no-cache",
53
+ "test2": "bunx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'bunx http-server storybook-static --port 6006 --silent' 'bunx wait-on tcp:6006 && yarn test-storybook'"
54
+ },
55
+ "dependencies": {
56
+ "@extractus/article-extractor": "^8.0.10",
57
+ "@tanstack/react-query": "^5.45.1",
58
+ "@tanstack/react-query-devtools": "^5.45.1",
59
+ "@tanstack/react-query-next-experimental": "^5.45.1",
60
+ "commander": "^12.0.0",
61
+ "dotenv": "^16.4.5",
62
+ "edge-runtime": "^2.5.9",
63
+ "geist": "^1.2.2",
64
+ "github-slugger": "^2.0.0",
65
+ "graphql": "^16.9.0",
66
+ "graphql-request": "6.1.0",
67
+ "html-differ": "^1.4.0",
68
+ "inngest": "^3.19.18",
69
+ "jose": "^5.2.4",
70
+ "lru-cache": "^10.2.0",
71
+ "lucide-react": "^0.381.0",
72
+ "mtxlib": "^0.4.140",
73
+ "mtxuilib": "^0.1.149",
74
+ "next": "^14.2.5",
75
+ "next-nprogress-bar": "^2.3.4",
76
+ "next-themes": "^0.3.0",
77
+ "path-to-regexp": "6.2.1",
78
+ "react": "^19.0.0-rc-8971381549-20240625",
79
+ "react-dom": "^19.0.0-rc-8971381549-20240625",
80
+ "react-error-boundary": "^4.0.11",
81
+ "react-hook-form": "^7.49.3",
82
+ "react-hotkeys-hook": "^4.5.0",
83
+ "react-relay": "^17.0.0",
84
+ "sonner": "^1.4.3",
85
+ "universal-cookie": "^7.1.4",
86
+ "zod": "^3.22.2",
87
+ "zustand": "^4.5.2"
88
+ },
89
+ "devDependencies": {
90
+ "@biomejs/biome": "^1.8.1",
91
+ "@cloudflare/workers-types": "^4.20240614.0",
92
+ "@inngest/eslint-plugin": "^0.0.6",
93
+ "@types/lodash": "^4.17.5",
94
+ "@types/node": "^20.14.6",
95
+ "@types/raf": "^3.4.3",
96
+ "@types/react": "^18.3.3",
97
+ "@types/react-dom": "^18.3.0",
98
+ "@types/validator": "^13.12.0",
99
+ "@types/web": "^0.0.151",
100
+ "@typescript-eslint/eslint-plugin": "^7.16.0",
101
+ "autoprefixer": "^10.4.19",
102
+ "bun-types": "^1.1.20",
103
+ "rimraf": "^6.0.1",
104
+ "turbo": "^2.0.6",
105
+ "typescript": "^5.4.5"
106
+ },
107
+ "other": {
108
+ "@typescript-eslint/parser": "^7.16.0"
109
+ },
110
+ "workspaces": ["packages/*", "apps/*"],
111
+ "engines": {
112
+ "node": "20.x"
113
+ },
114
+ "packageManager": "bun@1.1.20"
115
+ }