generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 901 Bytes
/
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
{
"name": "obsidian-tts",
"version": "0.5.3",
"description": "Text to speech for Obsidian. Hear your notes.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"lint": "eslint . --ext .ts",
"docs": "typedoc"
},
"keywords": [],
"author": "joethei",
"license": "GPL-3.0",
"dependencies": {
"@cospired/i18n-iso-languages": "^3.1.1",
"@types/node": "^16.11.6",
"builtin-modules": "^3.2.0",
"obsidian": "1.4.11",
"tslib": "2.3.1",
"typescript": "4.4.4",
"tinyld": "1.2.3",
"@vanakat/plugin-api": "0.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"esbuild": "0.13.12",
"eslint": "7.32.0",
"@microsoft/tsdoc": "0.14.1",
"eslint-plugin-tsdoc": "0.2.16",
"typedoc": "0.22.18"
},
"overrides": {
"obsidian" : "$obsidian"
}
}