vidistill 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6,6 +6,7 @@ var __glob = (map) => (path) => {
6
6
  };
7
7
 
8
8
  // src/cli/index.ts
9
+ import { createRequire as createRequire2 } from "module";
9
10
  import { defineCommand, runMain } from "citty";
10
11
 
11
12
  // src/cli/ui.ts
@@ -3737,11 +3738,14 @@ async function runDistill(args) {
3737
3738
  var globImport_commands_js = __glob({});
3738
3739
 
3739
3740
  // src/cli/index.ts
3741
+ var _require2 = createRequire2(import.meta.url);
3742
+ var { version } = _require2("../package.json");
3740
3743
  var DEFAULT_OUTPUT = "./vidistill-output/";
3741
3744
  var SUBCOMMANDS = /* @__PURE__ */ new Set(["ask", "search", "extract", "mcp", "watch", "rename-speakers"]);
3742
3745
  var main = defineCommand({
3743
3746
  meta: {
3744
3747
  name: "vidistill",
3748
+ version,
3745
3749
  description: "Video Intelligence Distiller \u2014 turn video into structured notes\n\nCommands: ask, search, extract, mcp, watch, rename-speakers"
3746
3750
  },
3747
3751
  args: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vidistill",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Video intelligence distiller — extract structured notes, transcripts, and insights from any video using Gemini",
5
5
  "type": "module",
6
6
  "license": "MIT",