-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
51
52
53
54
55
56
57
{
"name": "vox",
"version": "1.1.1",
"author": "vincentbavitz",
"license": "AGPL-3.0-only",
"description": "Intelligently create transcripts of voice memos",
"main": "main.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"release": "standard-version -t ''",
"format": "prettier --check src"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin"
],
"dependencies": {
"@popperjs/core": "^2.11.8",
"axios": "^1.4.0",
"clsx": "^2.1.1",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"gray-matter": "^4.0.3",
"hash-wasm": "^4.11.0",
"lodash": "^4.17.21",
"luxon": "^3.1.1",
"obsidian": "^0.16.3",
"p-queue": "^6.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.1.0",
"@types/node": "^20.2.4",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"builtin-modules": "^3.3.0",
"detect-indent": "^7.0.1",
"detect-newline": "^4.0.0",
"esbuild": "^0.13.15",
"eslint": "^8.27.0",
"obsidian": "^0.16.3",
"standard-version": "^9.5.0",
"stringify-package": "^1.0.1",
"ts-node": "^9.1.1",
"tslib": "^2.4.1"
}
}