Skip to content

Commit e46067b

Browse files
authored
Merge pull request #59 from opactorai/claudable-v2
fix: add missing main field for Electron entry point
2 parents 7e75d85 + a6e5912 commit e46067b

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Main entry point for Electron application
2+
// This file provides compatibility for tools that expect index.js by default
3+
// The actual Electron main process is located in electron/main.js
4+
5+
module.exports = require('./electron/main.js');

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "2.0.0",
44
"description": "AI-Powered Web App Builder - Build apps with natural language using Claude Code, Cursor, and more",
55
"private": true,
6+
"main": "index.js",
67
"scripts": {
78
"dev": "node scripts/run-web.js",
89
"dev:web": "node scripts/run-web.js",

0 commit comments

Comments
 (0)