generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.48 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "obsidian-transcription",
"version": "3.4.0",
"description": "Obsidian plugin to create high-quality text transcriptions from any media file, on any device",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint ./src --fix",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"get_types": "npx openapi-typescript https://api.swiftink.io/openapi.json --output src/types/swiftink.d.ts"
},
"keywords": [
"audio transcription",
"audio-to-text",
"audio",
"swiftink",
"markdown",
"obsidian",
"plugin",
"recognition",
"speech-to-text",
"speech",
"stt",
"transcription",
"whisper",
"domain-aware",
"asr",
"nlp"
],
"author": "djmango",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.14.47",
"eslint": "^8.48.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.33.1",
"date-fns": "^2.29.3",
"tus-js-client": "^3.1.1"
}
}