granola-toolkit 0.65.0 → 0.67.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +84 -8
  3. package/dist/cli.js +5562 -3859
  4. package/package.json +15 -5
package/package.json CHANGED
@@ -1,17 +1,24 @@
1
1
  {
2
2
  "name": "granola-toolkit",
3
- "version": "0.65.0",
4
- "description": "Toolkit for exporting and working with Granola meetings, notes, and transcripts",
3
+ "version": "0.67.0",
4
+ "description": "Unofficial open-source toolkit for syncing, browsing, exporting, and automating Granola locally",
5
5
  "keywords": [
6
+ "automation",
7
+ "byoa",
6
8
  "cli",
7
9
  "granola",
8
10
  "notes",
9
- "transcripts"
11
+ "search",
12
+ "sync",
13
+ "transcripts",
14
+ "tui",
15
+ "web"
10
16
  ],
11
17
  "homepage": "https://kkarimi.github.io/granola-toolkit/",
12
18
  "bugs": {
13
19
  "url": "https://github.com/kkarimi/granola-toolkit/issues"
14
20
  },
21
+ "license": "MIT",
15
22
  "author": "Nima Karimi",
16
23
  "repository": {
17
24
  "type": "git",
@@ -56,17 +63,20 @@
56
63
  "standalone:smoke": "node scripts/build-standalone.mjs --smoke-test",
57
64
  "staged:check": "node scripts/staged-check.mjs",
58
65
  "start": "node dist/cli.js",
66
+ "start:web": "npm run web:restart",
59
67
  "notes": "node dist/cli.js notes",
60
68
  "tui": "node dist/cli.js tui",
61
69
  "transcripts": "node dist/cli.js transcripts",
62
70
  "test": "vp test",
63
71
  "typecheck": "vp exec tsc --noEmit",
64
- "prepare": "vp config && node scripts/install-hooks.mjs",
72
+ "prepare": "vp config && npm run web:build && node scripts/install-hooks.mjs",
65
73
  "web:build": "node scripts/build-web-client.mjs",
66
- "web:check": "node scripts/build-web-client.mjs --check"
74
+ "web:check": "node scripts/build-web-client.mjs --check",
75
+ "web:restart": "npm run web:build && vp pack && node dist/cli.js web --restart"
67
76
  },
68
77
  "dependencies": {
69
78
  "@mariozechner/pi-tui": "^0.65.0",
79
+ "marked": "^17.0.6",
70
80
  "node-html-markdown": "^2.0.0",
71
81
  "solid-js": "^1.9.12"
72
82
  },