generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "obsidian-ocr",
"version": "2.0.1",
"description": "Add ocr capabilities to obsidian",
"main": "main.js",
"scripts": {
"dev": "webpack watch --mode development",
"build": "webpack --mode production",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"Obsidian",
"OCR",
"Tesseract",
"Imagemagick"
],
"author": "Jonas Mohr",
"license": "GPL-3.0",
"devDependencies": {
"@types/async": "^3.2.24",
"@types/chai": "^4.3.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.0",
"@types/normalize-path": "^3.0.2",
"@types/sql.js": "^1.4.9",
"@types/which": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"obsidian": "latest",
"ts-loader": "^9.5.1",
"tslib": "2.6.2",
"typescript": "5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"@types/randomstring": "^1.1.11",
"npm-check-updates": "^16.14.12"
},
"dependencies": {
"@simplyhexagonal/exec": "^2.0.2",
"async": "^3.2.5",
"chai": "^5.0.0",
"clipboardy": "^4.0.0",
"fastest-levenshtein": "^1.0.16",
"globby": "^14.0.0",
"lodash": "^4.17.21",
"normalize-path": "^3.0.0",
"randomstring": "^1.3.0",
"sanitize-filename": "^1.6.3",
"simple-node-logger": "^21.8.12",
"sql.js": "^1.9.0",
"which": "^4.0.0"
}
}