@teleporthq/teleport-plugin-next-workflows 0.43.1 → 0.43.2

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 +43 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teleporthq/teleport-plugin-next-workflows",
3
- "version": "0.43.1",
3
+ "version": "0.43.2",
4
4
  "description": "A plugin for workflow code generation in Next.js projects.",
5
5
  "author": "teleportHQ",
6
6
  "license": "MIT",
@@ -9,6 +9,47 @@
9
9
  "module": "dist/esm/index.js",
10
10
  "types": "dist/cjs/index.d.ts",
11
11
  "sideEffects": false,
12
+ "comment:browser": "These packages are dependencies of the GENERATED Next.js projects, not of this plugin. Node handlers are authored as real functions and serialized with fn.toString(), so the compiled output contains live require('<pkg>') tokens. When a browser bundler (e.g. the GUI's webpack) imports this plugin it would try to statically resolve those requires and fail with 'Module not found', even though the handlers are never executed there. Mapping them to false makes them resolve to an empty module in browser bundles. This does NOT affect the code emitted into generated projects (a separate package with these deps installed).",
13
+ "browser": {
14
+ "@anthropic-ai/sdk": false,
15
+ "@google/generative-ai": false,
16
+ "@libsql/client": false,
17
+ "@mistralai/mistralai": false,
18
+ "@sendgrid/mail": false,
19
+ "@supabase/supabase-js": false,
20
+ "ably": false,
21
+ "airtable": false,
22
+ "bcryptjs": false,
23
+ "bwip-js": false,
24
+ "cheerio": false,
25
+ "cohere-ai": false,
26
+ "crypto": false,
27
+ "fast-xml-parser": false,
28
+ "firebase-admin": false,
29
+ "form-data": false,
30
+ "mailersend": false,
31
+ "mailgun.js": false,
32
+ "marked": false,
33
+ "mongodb": false,
34
+ "mysql2/promise": false,
35
+ "next-auth": false,
36
+ "next-auth/jwt": false,
37
+ "next-auth/providers/credentials": false,
38
+ "next-auth/react": false,
39
+ "node-fetch": false,
40
+ "openai": false,
41
+ "pdf-parse": false,
42
+ "pdfkit": false,
43
+ "pg": false,
44
+ "postmark": false,
45
+ "qrcode": false,
46
+ "resend": false,
47
+ "sharp": false,
48
+ "stripe": false,
49
+ "tesseract.js": false,
50
+ "twilio": false,
51
+ "youtube-transcript": false
52
+ },
12
53
  "repository": {
13
54
  "type": "git",
14
55
  "url": "git+ssh://git@github.com/teleporthq/teleport-code-generators.git"
@@ -28,5 +69,5 @@
28
69
  "@teleporthq/teleport-shared": "^0.43.0",
29
70
  "@teleporthq/teleport-types": "^0.43.0"
30
71
  },
31
- "gitHead": "330babdc2809abc4c9027cfa6a7b79a5e77dccf9"
72
+ "gitHead": "d091a6531eb8f37ce2cfd2f73a647d67b6f3d391"
32
73
  }