buddy-builder 1.4.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.
- package/assets/icon-16.png +0 -0
- package/assets/icon-256.png +0 -0
- package/assets/icon-32.png +0 -0
- package/assets/icon.icns +0 -0
- package/assets/icon.ico +0 -0
- package/assets/icon.png +0 -0
- package/bin/buddy-builder.cjs +13 -0
- package/dist/assets/icon-16.png +0 -0
- package/dist/assets/icon-256.png +0 -0
- package/dist/assets/icon-32.png +0 -0
- package/dist/assets/icon.icns +0 -0
- package/dist/assets/icon.ico +0 -0
- package/dist/assets/icon.png +0 -0
- package/dist/main.cjs +16395 -0
- package/dist/main.cjs.map +7 -0
- package/dist/preload.cjs +13953 -0
- package/dist/preload.cjs.map +7 -0
- package/dist/renderer/app.js +178 -0
- package/dist/renderer/app.js.map +7 -0
- package/dist/renderer/index.html +14 -0
- package/dist/renderer/styles/base.css +257 -0
- package/dist/renderer/styles/chat.css +754 -0
- package/dist/renderer/styles/home.css +539 -0
- package/dist/renderer/styles/icon-rail.css +53 -0
- package/dist/renderer/styles/info-window.css +249 -0
- package/dist/renderer/styles/input-bar.css +189 -0
- package/dist/renderer/styles/modal.css +225 -0
- package/dist/renderer/styles/settings-view.css +340 -0
- package/dist/renderer/styles/sidebar.css +678 -0
- package/dist/renderer/styles/status-bar.css +107 -0
- package/dist/renderer/styles/tools.css +1149 -0
- package/dist/renderer/styles/welcome.css +69 -0
- package/dist/renderer/styles.css +13 -0
- package/package.json +57 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/assets/icon.icns
ADDED
|
Binary file
|
package/assets/icon.ico
ADDED
|
Binary file
|
package/assets/icon.png
ADDED
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const { spawn } = require("child_process");
|
|
3
|
+
const path = require("path");
|
|
4
|
+
|
|
5
|
+
const electronPath = require("electron");
|
|
6
|
+
const appPath = path.join(__dirname, "..", "dist", "main.cjs");
|
|
7
|
+
|
|
8
|
+
const child = spawn(electronPath, [appPath], {
|
|
9
|
+
stdio: "inherit",
|
|
10
|
+
windowsHide: false,
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
child.on("close", (code) => process.exit(code ?? 0));
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|