granola-toolkit 0.43.0 → 0.44.0
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/README.md +4 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -17,6 +17,10 @@ npx granola-toolkit --help
|
|
|
17
17
|
|
|
18
18
|
The published package exposes both `granola` and `granola-toolkit` as executable names.
|
|
19
19
|
|
|
20
|
+
If you do not want to install via npm, each GitHub release also publishes standalone archives for
|
|
21
|
+
macOS arm64, Linux x64, and Windows x64. Extract the archive and run `granola` (or
|
|
22
|
+
`granola.exe` on Windows).
|
|
23
|
+
|
|
20
24
|
## Quick Start
|
|
21
25
|
|
|
22
26
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "granola-toolkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.44.0",
|
|
4
4
|
"description": "Toolkit for exporting and working with Granola meetings, notes, and transcripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -48,6 +48,8 @@
|
|
|
48
48
|
"release:major": "node scripts/release.mjs major",
|
|
49
49
|
"release:minor": "node scripts/release.mjs minor",
|
|
50
50
|
"release:patch": "node scripts/release.mjs patch",
|
|
51
|
+
"standalone:build": "node scripts/build-standalone.mjs",
|
|
52
|
+
"standalone:smoke": "node scripts/build-standalone.mjs --smoke-test",
|
|
51
53
|
"start": "node dist/cli.js",
|
|
52
54
|
"notes": "node dist/cli.js notes",
|
|
53
55
|
"tui": "node dist/cli.js tui",
|
|
@@ -66,6 +68,8 @@
|
|
|
66
68
|
"devDependencies": {
|
|
67
69
|
"@types/node": "^25.5.2",
|
|
68
70
|
"@vitest/coverage-v8": "4.1.2",
|
|
71
|
+
"esbuild": "^0.27.7",
|
|
72
|
+
"postject": "^1.0.0-alpha.6",
|
|
69
73
|
"typescript": "^5.9.3",
|
|
70
74
|
"vite-plugin-solid": "^2.11.11",
|
|
71
75
|
"vite-plus": "0.1.15"
|