-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "scribeline",
"version": "0.0.0",
"type": "module",
"description": "A transcript editor in the browser. Waveform and words on one timeline, whisper.cpp running as WebAssembly on the page, audio that never leaves the device.",
"license": "MIT",
"author": "Bevan Stanely",
"keywords": [
"transcript",
"subtitles",
"whisper",
"webassembly",
"waveform",
"srt",
"vtt"
],
"scripts": {
"test": "node --test \"test/**/*.test.mjs\"",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.node.json --noEmit",
"build": "node scripts/build-site.mjs",
"start": "node scripts/build-site.mjs --serve"
},
"devDependencies": {
"@types/node": "^26.4.0",
"esbuild": "^0.25.0",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22"
},
"private": true
}