glance-cli 0.13.0 → 0.13.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/CHANGELOG.md +8 -0
- package/dist/cli.js +136 -1065
- package/package.json +3 -2
- package/src/cli/commands.ts +832 -0
- package/src/cli/config.ts +24 -0
- package/src/cli/display.ts +269 -0
- package/src/cli/errors.ts +31 -0
- package/src/cli/index.ts +237 -0
- package/src/cli/logger.ts +43 -0
- package/src/cli/types.ts +114 -0
- package/src/cli/utils.ts +239 -0
- package/src/cli/validators.ts +176 -0
- package/src/cli.ts +17 -0
- package/src/core/compat.ts +96 -0
- package/src/core/extractor.ts +532 -0
- package/src/core/fetcher.ts +592 -0
- package/src/core/formatter.ts +742 -0
- package/src/core/language-detector.ts +382 -0
- package/src/core/screenshot.ts +444 -0
- package/src/core/service-detector.ts +411 -0
- package/src/core/summarizer.ts +656 -0
- package/src/core/text-cleaner.ts +150 -0
- package/src/core/voice.ts +708 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to glance-cli will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.13.1] - 2026-01-05
|
|
9
|
+
|
|
10
|
+
### 📦 Optimized: Package Size (Breaking: Major Size Reduction)
|
|
11
|
+
- **Reduced bundle size by 98.8%**: From 10.6MB → 122KB
|
|
12
|
+
- **Externalized heavy dependencies**: AI libraries now loaded separately instead of bundled
|
|
13
|
+
- **Faster installation**: Significantly reduced download time for users
|
|
14
|
+
- **Same functionality**: All features work identically with much smaller footprint
|
|
15
|
+
|
|
8
16
|
## [0.13.0] - 2026-01-05
|
|
9
17
|
|
|
10
18
|
### 🌍 Enhanced: Multilingual Support
|