mtmsdk 0.0.16 → 0.0.18

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 (1) hide show
  1. package/package.json +48 -48
package/package.json CHANGED
@@ -1,31 +1,5 @@
1
1
  {
2
- "version": "0.0.16",
3
- "files": [
4
- "dist"
5
- ],
6
- "keywords": [],
7
- "license": "ISC",
8
- "main": "./dist/index.js",
9
- "main--": "src/index.ts",
10
- "name": "mtmsdk",
11
- "publishConfig": {
12
- "access": "public"
13
- },
14
- "scripts": {
15
- "build": "bun run tsc",
16
- "clean": "rm -rf dist",
17
- "gen": "bun gen:openapi:sb && bun gen:openapi:gomtm && bun gen:openapi:mtmai && bun gen:openapi:mtgate && bun gen:openapi:hatchet",
18
- "gen:openapi:mtgate": "openapi-ts --file=openapi-ts.mtgate.config.ts",
19
- "gen:openapi:mtmai": "openapi-ts --file=openapi-ts.mtmai.config.ts",
20
- "gen:openapi:gomtm": "openapi-ts --file=openapi-ts.gomtm.config.ts",
21
- "gen:openapi:sb": "openapi-ts --file=openapi-ts.sb.config.ts",
22
- "gen:openapi:hatchet": "openapi-ts --file=openapi-ts.hatchet.config.ts",
23
- "prepublishOnly": "bun run clean && bun run build"
24
- },
25
- "type": "module",
26
- "types": "./dist/index.d.ts",
27
2
  "author": "MTM Team",
28
- "description": "SDK and API client for MTM project with OpenAPI generated types",
29
3
  "dependencies": {
30
4
  "@supabase-cache-helpers/postgrest-core": "^0.12.3",
31
5
  "@supabase/postgrest-js": "^2.87",
@@ -38,6 +12,7 @@
38
12
  "zod": "^4.1.13",
39
13
  "zustand": "^5"
40
14
  },
15
+ "description": "SDK and API client for MTM project with OpenAPI generated types",
41
16
  "devDependencies": {
42
17
  "@hey-api/openapi-ts": "^0.88.0",
43
18
  "@hono/node-server": "^1.16.0",
@@ -47,27 +22,6 @@
47
22
  "@types/textract": "^2.4.5",
48
23
  "supabase": "^2.66"
49
24
  },
50
- "peerDependencies": {
51
- "react": " ^19.2",
52
- "react-dom": " ^19.2",
53
- "next": "^15",
54
- "@supabase/supabase-js": "2",
55
- "hono": "^4.9.6",
56
- "ai": "^5.0.113"
57
- },
58
- "typesVersions": {
59
- "*": {
60
- "*": [
61
- "src/*.ts",
62
- "src/*.tsx",
63
- "src/*/index.ts",
64
- "src/*/index.tsx",
65
- "dist/*.d.ts",
66
- "dist/*",
67
- "dist/*/index"
68
- ]
69
- }
70
- },
71
25
  "exports": {
72
26
  ".": {
73
27
  "import": [
@@ -94,5 +48,51 @@
94
48
  "./dist/*"
95
49
  ]
96
50
  }
97
- }
51
+ },
52
+ "files": [
53
+ "dist"
54
+ ],
55
+ "keywords": [],
56
+ "license": "ISC",
57
+ "main": "./dist/index.js",
58
+ "main--": "src/index.ts",
59
+ "name": "mtmsdk",
60
+ "peerDependencies": {
61
+ "@supabase/supabase-js": "2",
62
+ "ai": "^5.0.113",
63
+ "hono": "^4.9.6",
64
+ "next": "^15",
65
+ "react": " ^19.2",
66
+ "react-dom": " ^19.2"
67
+ },
68
+ "publishConfig": {
69
+ "access": "public"
70
+ },
71
+ "scripts": {
72
+ "build": "bun run tsc",
73
+ "clean": "rm -rf dist",
74
+ "gen": "bun gen:openapi:sb && bun gen:openapi:gomtm && bun gen:openapi:mtmai && bun gen:openapi:mtgate && bun gen:openapi:hatchet",
75
+ "gen:openapi:gomtm": "openapi-ts --file=openapi-ts.gomtm.config.ts",
76
+ "gen:openapi:hatchet": "openapi-ts --file=openapi-ts.hatchet.config.ts",
77
+ "gen:openapi:mtgate": "openapi-ts --file=openapi-ts.mtgate.config.ts",
78
+ "gen:openapi:mtmai": "openapi-ts --file=openapi-ts.mtmai.config.ts",
79
+ "gen:openapi:sb": "openapi-ts --file=openapi-ts.sb.config.ts",
80
+ "prepublishOnly": "bun run clean && bun run build"
81
+ },
82
+ "type": "module",
83
+ "types": "./dist/index.d.ts",
84
+ "typesVersions": {
85
+ "*": {
86
+ "*": [
87
+ "src/*.ts",
88
+ "src/*.tsx",
89
+ "src/*/index.ts",
90
+ "src/*/index.tsx",
91
+ "dist/*.d.ts",
92
+ "dist/*",
93
+ "dist/*/index"
94
+ ]
95
+ }
96
+ },
97
+ "version": "0.0.18"
98
98
  }