-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.69 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
58
{
"name": "obsidian-aloud-tts",
"version": "0.6.0",
"description": "Highlight and speak text from your obsidian notes",
"main": "main.js",
"scripts": {
"all": "pnpm run lint; pnpm run format:check; pnpm run test run; pnpm run build",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "./version-bump.sh",
"lint": "eslint src",
"test": "vitest",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"web:dev": "vite src/web/",
"web:build": "vite build src/web/"
},
"keywords": [
"obsidian",
"text-to-speech"
],
"author": "Adrian Lyjak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adrianlyjak/obsidian-aloud-tts"
},
"devDependencies": {
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.57.1",
"node^20.0.0": "link:@types/node^20.0.0",
"obsidian": "^1.7.2",
"prettier": "^3.3.3",
"tslib": "2.6.2",
"typescript": "5.3.2",
"vite": "^5.4.8",
"vite-plugin-node-polyfills": "^0.17.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@codemirror/language": "^6.10.3",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"fft.js": "^4.0.4",
"idb": "^8.0.0",
"mobx": "^6.13.3",
"mobx-react-lite": "^4.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "[email protected]+sha1.2a34aeb80bf8e8435815d14f620ec4ba0eff1604"
}