@steipete/summarize 0.8.0 → 0.8.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.
package/dist/cli.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- if (!process.env.SUMMARIZE_GIT_SHA) process.env.SUMMARIZE_GIT_SHA = "c7a95ea4"
2
+ if (!process.env.SUMMARIZE_GIT_SHA) process.env.SUMMARIZE_GIT_SHA = "3772a8fa"
3
3
  await import('./esm/cli.js')
@@ -1,7 +1,7 @@
1
1
  import fs from 'node:fs';
2
2
  import path from 'node:path';
3
3
  import { fileURLToPath } from 'node:url';
4
- export const FALLBACK_VERSION = '0.8.0';
4
+ export const FALLBACK_VERSION = '0.8.2';
5
5
  export function resolvePackageVersion(importMetaUrl) {
6
6
  const injected = typeof process !== 'undefined' && typeof process.env.SUMMARIZE_VERSION === 'string'
7
7
  ? process.env.SUMMARIZE_VERSION.trim()
@@ -1,4 +1,4 @@
1
- export declare const FALLBACK_VERSION = "0.8.0";
1
+ export declare const FALLBACK_VERSION = "0.8.2";
2
2
  export declare function resolvePackageVersion(importMetaUrl?: string): string;
3
3
  export declare function resolveGitSha(importMetaUrl?: string): string | null;
4
4
  export declare function formatVersionLine(importMetaUrl?: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steipete/summarize",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "Link → clean text → summary.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -36,7 +36,16 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@mariozechner/pi-ai": "^0.30.2",
39
- "@steipete/summarize-core": "0.8.0"
39
+ "commander": "^14.0.2",
40
+ "file-type": "^21.2.0",
41
+ "gpt-tokenizer": "^3.4.0",
42
+ "json5": "^2.2.3",
43
+ "markdansi": "^0.2.0",
44
+ "mime": "^4.1.0",
45
+ "ora": "^9.0.0",
46
+ "osc-progress": "github:steipete/osc-progress#v0.2.0",
47
+ "tokentally": "github:steipete/tokentally#v0.1.0",
48
+ "@steipete/summarize-core": "0.8.2"
40
49
  },
41
50
  "devDependencies": {
42
51
  "@biomejs/biome": "^2.3.10",
@@ -45,18 +54,9 @@
45
54
  "@types/node": "^25.0.3",
46
55
  "@types/sanitize-html": "^2.16.0",
47
56
  "@vitest/coverage-v8": "^4.0.16",
48
- "commander": "^14.0.2",
49
57
  "esbuild": "^0.27.2",
50
- "file-type": "^21.2.0",
51
- "gpt-tokenizer": "^3.4.0",
52
- "json5": "^2.2.3",
53
- "markdansi": "^0.2.0",
54
- "mime": "^4.1.0",
55
- "ora": "^9.0.0",
56
- "osc-progress": "github:steipete/osc-progress#v0.2.0",
57
58
  "oxlint": "^1.35.0",
58
59
  "oxlint-tsgolint": "^0.10.0",
59
- "tokentally": "github:steipete/tokentally#v0.1.0",
60
60
  "tsx": "^4.21.0",
61
61
  "typescript": "^5.9.3",
62
62
  "vitest": "^4.0.16"