dictawhisper 0.0.2 → 0.0.4
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 +7 -0
- package/package.json +28 -17
package/README.md
CHANGED
|
@@ -36,6 +36,13 @@ Hit Record, or drag an audio file onto the page. Flags, HTTP, MCP, and `retransc
|
|
|
36
36
|
|
|
37
37
|
Files are the database. The Whisper model stays loaded. Audio stays on this computer. The inbox is loopback by default; `http.tailscale` puts the same page on your tailnet. Playback follows cleaned paragraphs using Whisper word times.
|
|
38
38
|
|
|
39
|
+
<!-- xfacts-nutrition-label -->
|
|
40
|
+
|
|
41
|
+
## Nutrition label
|
|
42
|
+
|
|
43
|
+
- **AppFacts:** [viewer](https://appfacts.dev/v#af1.eNpVkltr3DAQhf-KmKcWtGvyqqeASaG5lFDnrZQwK0-8imVJaMbemGX_e5H31n0Tc74ZnTnSHiYwdxoCDgQGWmcFd1vHiTJokDmV6o42ClNS35rm93fQwIIyMhhAK24i0OCdpcCFffn5diRsD2YPHkM3YleUtzlRY7NLotUjTng-v86yjQE05DGIW2z8ii2tP_k_7SPjQLuYezDQTOSFnpxo9fCVMjEvN87eha7IddNoVTcNaEAHBj6QhfLqtJZW0XsMJKDBxmEYg7MoLgYwwNH2JGsX4aChpcRg_uyhKPe8XPrJVe9KZypzcwxCoVVXcwd9xOniq4AbtH3hmPJE-QLd-jqxkjHwkoyLQVHoXKBLx9V5Qb0flF0siEo5WmIuCZzh6zJHPBP6VQlY3a595u-H2JJfBn5JylGijb7itj_1v9Sv6lxWPKYUs8Dhr4bN6HxbHjuh7bGj9wEDdpTBQAppKFlmSpGdxDyDga1IYlNVnZPtuFnbOFQ1CvqZZfUj5o5Wz891dfMVD_8Ay7foKw) · [raw](https://github.com/Catalyst-Forge-LLC/dictawhisper/blob/main/APP_FACTS.md)
|
|
44
|
+
- **ToolFacts:** [viewer](https://toolfacts.dev/v#tf1.eNrFlE1v2zAMhv-KoHO-tt2y05ChpwwY0MMORRGoEmNrtSWXop0GQf77XioN9oH1nItjkC_58mEsnexk1x9mNrme7Np-jV7cjzaWgdh823w398QTsZ3ZQBN1GWGoNk5cdyxi7jI3hCQkJeaE1GqxWnxCpIiTsSDgvMRJNV30lIqafBmcb2n-cbFC-DmmgFjvh3m5evGYJOo8J0uv5Ee59O6yd9184OypFMiEXSpDZkGuSIjZnmfWMwVCueuK1jO9jBEhu354RJYa1lokhDrqSfiI4pQTVcQiMTl1K296yVn7PJyuCwq6oMNlQbtCjn2rtDHQjvZ78qLMTC4oBoFTvfaxo4J9Ua-TemxR04nkkPn5t_8bGaHFHuMT_NG3H7IAyK6FR4Jo5CHXNd5XdzNlLNYkiIp5Ohq0DGVmxDV4ZjbqrbN_NkwycipmcNIiFxwqrkKXgnGmtFimGZimSAcs8__UDclO7W7FfUcCbJRWaGXWMbzjSqbMY4ovIzKu_IPuO3KJghF6lcqs9O-CdrHIripuRLrFAHVEE5ORlszPDAzXmUMEqM84Ju9Pz-S16S1HT3Qg_anf5j4y3uvkedAzBg6w1b8huKPBYW5IP1fBZWLPjzPb5p4G12i7VmQo6-XyT8KFz30FgWWUXE_yVdfAZnxSxfJ6Wc3rZTXfbjd_dan3yJg8TkO4YJx_AeesyY0) · [raw](https://github.com/Catalyst-Forge-LLC/dictawhisper/blob/main/TOOL_FACTS.md)
|
|
45
|
+
|
|
39
46
|
## Development
|
|
40
47
|
|
|
41
48
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dictawhisper",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Name hold. The voice journal is a git clone (dictawhisper.com). A CLI or library may land here later.",
|
|
6
6
|
"homepage": "https://dictawhisper.com",
|
|
@@ -27,6 +27,31 @@
|
|
|
27
27
|
"README.md",
|
|
28
28
|
"LICENSE"
|
|
29
29
|
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"start": "node --experimental-strip-types src/server.ts",
|
|
32
|
+
"dev": "node scripts/ensure-lease.mjs dictawhisper 7777 && node scripts/ensure-lease.mjs dictawhisper-api 8008 && node --experimental-strip-types src/dev.ts",
|
|
33
|
+
"serve": "node scripts/ensure-lease.mjs dictawhisper 7777 && node scripts/ensure-lease.mjs dictawhisper-api 8008 && node --experimental-strip-types src/dev.ts",
|
|
34
|
+
"turbo": "WHISPER_MODEL=turbo node --experimental-strip-types src/server.ts",
|
|
35
|
+
"ui": "pnpm --dir client dev",
|
|
36
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
37
|
+
"test": "node --experimental-strip-types --test test/*.test.ts",
|
|
38
|
+
"doctor": "node --experimental-strip-types src/doctor.ts",
|
|
39
|
+
"mcp": "node --experimental-strip-types src/mcp.ts",
|
|
40
|
+
"retranscribe": "node --experimental-strip-types scripts/retranscribe.ts",
|
|
41
|
+
"asr:compare": "node --experimental-strip-types scripts/run-compare-asr.ts",
|
|
42
|
+
"audio:probe": "node --experimental-strip-types scripts/probe-pending.ts",
|
|
43
|
+
"journal:index": "node --experimental-strip-types scripts/journal-index.ts",
|
|
44
|
+
"inbox:organize": "node scripts/inbox-organize.mjs",
|
|
45
|
+
"inbox:file-live": "node scripts/inbox-file-live.mjs",
|
|
46
|
+
"inbox:convert": "node scripts/inbox-convert-non-mp3.mjs",
|
|
47
|
+
"inbox:stamp-mtime": "node scripts/inbox-stamp-mtime.mjs",
|
|
48
|
+
"inbox:fix-mtime": "node scripts/inbox-fix-mtime.mjs",
|
|
49
|
+
"site:dev": "node scripts/ensure-lease.mjs dictawhisper-site 5186 && pnpm --dir site dev",
|
|
50
|
+
"site:build": "pnpm --dir site build",
|
|
51
|
+
"site:deploy": "pnpm --dir site run ship",
|
|
52
|
+
"ship": "pnpm --dir site run ship",
|
|
53
|
+
"prepublishOnly": "node scripts/publish-gate.mjs && pnpm test && pnpm typecheck"
|
|
54
|
+
},
|
|
30
55
|
"engines": {
|
|
31
56
|
"node": ">=20"
|
|
32
57
|
},
|
|
@@ -40,6 +65,7 @@
|
|
|
40
65
|
"multer": "^2.2.0",
|
|
41
66
|
"ollanet": "^0.6.5",
|
|
42
67
|
"socket.io": "^4.8.1",
|
|
68
|
+
"sqlite-vec": "^0.1.9",
|
|
43
69
|
"zod": "^3.25.76",
|
|
44
70
|
"zod-to-json-schema": "^3.24.6"
|
|
45
71
|
},
|
|
@@ -50,20 +76,5 @@
|
|
|
50
76
|
"@types/node": "^24.6.2",
|
|
51
77
|
"aibreze": "^0.1.2",
|
|
52
78
|
"typescript": "^5.9.3"
|
|
53
|
-
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"start": "node --experimental-strip-types src/server.ts",
|
|
56
|
-
"dev": "node scripts/ensure-lease.mjs dictawhisper 7777 && node scripts/ensure-lease.mjs dictawhisper-api 8008 && node --experimental-strip-types src/dev.ts",
|
|
57
|
-
"turbo": "WHISPER_MODEL=turbo node --experimental-strip-types src/server.ts",
|
|
58
|
-
"ui": "pnpm --dir client dev",
|
|
59
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
60
|
-
"test": "node --experimental-strip-types --test test/*.test.ts",
|
|
61
|
-
"doctor": "node --experimental-strip-types src/doctor.ts",
|
|
62
|
-
"mcp": "node --experimental-strip-types src/mcp.ts",
|
|
63
|
-
"retranscribe": "node --experimental-strip-types scripts/retranscribe.ts",
|
|
64
|
-
"site:dev": "node scripts/ensure-lease.mjs dictawhisper-site 5186 && pnpm --dir site dev",
|
|
65
|
-
"site:build": "pnpm --dir site build",
|
|
66
|
-
"site:deploy": "pnpm --dir site run ship",
|
|
67
|
-
"ship": "pnpm --dir site run ship"
|
|
68
79
|
}
|
|
69
|
-
}
|
|
80
|
+
}
|