-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "image-search",
"author": {
"name": "Maximilian zirps",
"email": "hello@maxzirps.at",
"url": "https://maxzirps.at"
},
"license": "MIT",
"pricing": "Free",
"icon": "images/icon.png",
"publisher": "maxzirps",
"repository": {
"type": "git",
"url": "git+https://github.com/maxzirps/image-search-vscode.git"
},
"displayName": "Image Search",
"description": "Search and download stock images from pixabay.com",
"version": "1.0.0",
"galleryBanner": {
"theme": "light"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"keywords": [
"image search",
"stock image",
"pixabay",
"web image search",
"image download"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "image-search.setPixabayAPIKey",
"title": "Image-Search: Set Pixabay API key"
},
{
"command": "image-search.setImageResolution",
"title": "Image-Search: Set resolution of downloaded images"
},
{
"command": "image-search.searchImage",
"title": "Image-Search: Search Image"
}
],
"configuration": {
"title": "Image Search",
"properties": {
"image-search.pixabayAPIKey": {
"type": "string",
"default": "",
"description": "Your Pixabay API key for searching images."
},
"image-search.downloadedImageResolution": {
"type": "string",
"enum": [
"webformat",
"largeImage",
"fullHD",
"image"
],
"default": "webformat",
"description": "You can choose between 4 pre-redfined resolutions. FullHD and Image only work if your account has been approved for full access. Check their website for more information. ",
"enumDescriptions": [
"Medium sized image with a maximum width or height of 640 px (webformatWidth x webformatHeight).",
"Scaled image with a maximum width/height of 1280px.",
"Full HD scaled image with a maximum width/height of 1920px.",
"URL to the original image (imageWidth x imageHeight)."
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.9.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}