everything-dev 0.0.1 → 0.0.3

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": "everything-dev",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "bos": "./src/cli.ts"
@@ -15,6 +15,7 @@
15
15
  "@effect/platform": "^0.82.8",
16
16
  "@effect/platform-bun": "^0.58.1",
17
17
  "@inquirer/prompts": "^8.2.0",
18
+ "@libsql/client": "^0.17.0",
18
19
  "borsh": "^2.0.0",
19
20
  "boxen": "^8.0.1",
20
21
  "chalk": "^5.6.2",
package/src/cli.ts CHANGED
@@ -256,13 +256,13 @@ Zephyr Configuration:
256
256
 
257
257
  program
258
258
  .command("publish")
259
- .description("Publish bos.config.json to on-chain registry (FastFS)")
259
+ .description("Publish bos.config.json to on-chain registry (Near Social)")
260
260
  .option("--network <network>", "Network: mainnet | testnet", "mainnet")
261
- .option("--path <path>", "FastFS relative path", "bos.config.json")
261
+ .option("--path <path>", "Near Social relative path", "bos.config.json")
262
262
  .option("--dry-run", "Show what would be published without sending")
263
263
  .action(async (options) => {
264
264
  console.log();
265
- console.log(` ${icons.pkg} Publishing to FastFS...`);
265
+ console.log(` ${icons.pkg} Publishing to Near Social...`);
266
266
  console.log(colors.dim(` Account: ${config.account}`));
267
267
  console.log(colors.dim(` Network: ${options.network}`));
268
268
 
package/src/plugin.ts CHANGED
@@ -261,6 +261,7 @@ export default createPlugin({
261
261
  UI_SOURCE: "remote",
262
262
  API_SOURCE: "remote",
263
263
  BOS_ACCOUNT: config.account,
264
+ HOST_REMOTE_URL: config.app.host.production,
264
265
  UI_REMOTE_URL: config.app.ui.production,
265
266
  API_REMOTE_URL: config.app.api.production,
266
267
  };