@quantiya/codevibe-gemini-plugin 1.0.6 → 1.0.7

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-gemini-plugin",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Control Gemini CLI from your iPhone and Android — real-time sync, approve file edits, send prompts by voice. Part of CodeVibe.",
5
5
  "main": "dist/server.js",
6
6
  "bin": {
@@ -15,12 +15,12 @@
15
15
  ".env.example"
16
16
  ],
17
17
  "scripts": {
18
- "build": "tsc",
18
+ "typecheck": "tsc --noEmit",
19
+ "build": "rm -rf dist && npm run typecheck && esbuild src/server.ts --bundle --platform=node --target=node18 --minify --packages=external --outfile=dist/server.js",
19
20
  "prepack": "node scripts/prepare-publish.js && npm run build",
20
21
  "postpack": "node scripts/restore-dev.js",
21
22
  "dev": "ts-node src/server.ts",
22
23
  "start": "node dist/server.js",
23
- "watch": "tsc --watch",
24
24
  "test": "jest --config jest.config.js --forceExit"
25
25
  },
26
26
  "keywords": [
@@ -51,7 +51,7 @@
51
51
  "darwin"
52
52
  ],
53
53
  "dependencies": {
54
- "@quantiya/codevibe-core": "^1.0.3",
54
+ "@quantiya/codevibe-core": "^1.0.5",
55
55
  "chokidar": "^5.0.0",
56
56
  "dotenv": "^16.6.1",
57
57
  "express": "^5.1.0",
@@ -65,6 +65,7 @@
65
65
  "@types/node": "^24.10.1",
66
66
  "@types/uuid": "^10.0.0",
67
67
  "@types/ws": "^8.18.1",
68
+ "esbuild": "^0.28.0",
68
69
  "jest": "^30.3.0",
69
70
  "ts-jest": "^29.4.9",
70
71
  "ts-node": "^10.9.2",