-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "image-comparator",
"displayName": "Image Comparator",
"description": "An extension for subjectively evaluating image differences.",
"version": "0.0.9",
"publisher": "l-oneil",
"icon": "icon.png",
"author": {
"name": "l-oneil"
},
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:image-comparator.openViewer",
"onCommand:image-comparator.addImage"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "image-comparator.openViewer",
"title": "Image Comparator: Open Window"
},
{
"command": "image-comparator.addImage",
"title": "Image Comparator: Add Image"
}
],
"menus": {
"explorer/context": [
{
"when": "!explorerResourceIsFolder && resourceExtname == .png || resourceExtname == .jpg || resourceExtname == .jpeg",
"command": "image-comparator.addImage",
"group": "3_compare"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.47.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.13.0",
"typescript": "^4.7.2"
},
"license": "https://github.com/l-oneil/vscode-image-comparator/blob/main/LICENSE",
"bugs": {
"url": "https://github.com/l-oneil/vscode-image-comparator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/l-oneil/vscode-image-comparator.git"
},
"homepage": "https://github.com/l-oneil/vscode-image-comparator/blob/main/README.md"
}