@hemacharanpyla/infinitycli 1.0.0 → 1.0.1

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/bin/infinity.js +4 -0
  2. package/package.json +6 -2
package/bin/infinity.js CHANGED
@@ -1,3 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
+ // The CLI only needs built-in modules (process, readline, os, fetch).
4
+ // Puppeteer/Express are only needed for the server (server.js).
5
+ process.env.PUPPETEER_SKIP_DOWNLOAD = "true";
6
+
3
7
  import "../chat.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hemacharanpyla/infinitycli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "∞ Infinity CLI — terminal AI chat with real-time response timing",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,8 +42,12 @@
42
42
  "cookies/",
43
43
  "README.md"
44
44
  ],
45
- "dependencies": {
45
+ "dependencies": {},
46
+ "optionalDependencies": {
46
47
  "express": "^4.22.2",
47
48
  "puppeteer": "^23.11.1"
49
+ },
50
+ "puppeteer": {
51
+ "skipDownload": true
48
52
  }
49
53
  }