@openvcs/sdk 0.4.0-nightly.20260530.99 → 0.4.1-beta.102

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/lib/init.js CHANGED
@@ -219,7 +219,6 @@ function writeModuleTemplate(answers) {
219
219
  openvcs: {
220
220
  id: answers.pluginId,
221
221
  name: answers.pluginName,
222
- version: answers.pluginVersion,
223
222
  default_enabled: answers.defaultEnabled,
224
223
  module: { exec: "openvcs-plugin.js" },
225
224
  },
@@ -260,7 +259,6 @@ function writeThemeTemplate(answers) {
260
259
  openvcs: {
261
260
  id: answers.pluginId,
262
261
  name: answers.pluginName,
263
- version: answers.pluginVersion,
264
262
  default_enabled: answers.defaultEnabled,
265
263
  },
266
264
  scripts: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openvcs/sdk",
3
- "version": "0.4.0-nightly.20260530.99",
3
+ "version": "0.4.1-beta.102",
4
4
  "description": "OpenVCS SDK CLI for plugin scaffolding and runtime asset builds",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "homepage": "https://openvcs.app/",
package/src/lib/init.ts CHANGED
@@ -230,7 +230,6 @@ function writeModuleTemplate(answers: InitAnswers): void {
230
230
  openvcs: {
231
231
  id: answers.pluginId,
232
232
  name: answers.pluginName,
233
- version: answers.pluginVersion,
234
233
  default_enabled: answers.defaultEnabled,
235
234
  module: { exec: "openvcs-plugin.js" },
236
235
  },
@@ -275,7 +274,6 @@ function writeThemeTemplate(answers: InitAnswers): void {
275
274
  openvcs: {
276
275
  id: answers.pluginId,
277
276
  name: answers.pluginName,
278
- version: answers.pluginVersion,
279
277
  default_enabled: answers.defaultEnabled,
280
278
  },
281
279
  scripts: {