-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.9 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.9 KB
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
80
{
"name": "labeleditor-vscode",
"displayName": "LabelEditor for VSCode",
"description": "Image annotation tool with polygon drawing for machine learning datasets",
"version": "0.14.0",
"publisher": "ciuzaak",
"icon": "icon.png",
"author": {
"name": "Ciuzaak Wong"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ciuzaak/LabelEditor-for-VSCode.git"
},
"bugs": {
"url": "https://github.com/ciuzaak/LabelEditor-for-VSCode/issues"
},
"homepage": "https://github.com/ciuzaak/LabelEditor-for-VSCode#readme",
"keywords": [
"annotation",
"labeling",
"machine learning",
"computer vision",
"polygon",
"image",
"labelme"
],
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other",
"Data Science",
"Visualization"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "labeleditor-vscode.openEditor",
"title": "LabelEditor: Open Image Annotator"
},
{
"command": "labeleditor-vscode.openFromFolder",
"title": "LabelEditor: Open Folder for Annotation"
}
],
"menus": {
"explorer/context": [
{
"command": "labeleditor-vscode.openEditor",
"when": "resourceExtname =~ /\\.(jpg|jpeg|png|bmp)$/i",
"group": "navigation"
},
{
"command": "labeleditor-vscode.openFromFolder",
"when": "explorerResourceIsFolder",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.80.0",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.1.3"
},
"dependencies": {
"polygon-clipping": "^0.15.7"
}
}