-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "windmillcode-paste-text-from-image",
"displayName": "Windmillcode: Paste Text From Image",
"description": "",
"version": "1.93.1000",
"publisher": "windmillcode-publisher-0",
"icon": "images/logo.png",
"repository": {
"url": "https://github.com/WindMillCode/Paste-Text-From-Image"
},
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Formatters",
"Machine Learning",
"Other",
"AI",
"Visualization"
],
"keywords": [
"OCR",
"Tesseract",
"Image",
"Clipboard",
"Text Extraction",
"Paste",
"VSCode Extension"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"title": "Windmillcode: Paste Image As Text",
"command": "windmillcode-paste-text-from-image.pasteImageAsText"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus",
"command": "windmillcode-paste-text-from-image.pasteImageAsText",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.26.0",
"typescript": "^5.1.3"
},
"dependencies": {
"adm-zip": "^0.5.10",
"clipboardy": "^4.0.0",
"copy-paste": "^1.5.3",
"fast-glob": "^3.3.2",
"gitignore-parser": "^0.0.2",
"jimp": "^1.1.5",
"semver": "^7.5.4",
"tar": "^6.1.15",
"tar.gz2": "^1.0.0",
"tesseract.js": "^5.1.1",
"uuid": "^9.0.1"
}
}