-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.26 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "webpr",
"displayName": "Retro WebP Converter",
"description": "Convert PNG/JPG into WebP with a cool Miami Vice-style interface.",
"version": "1.1.1",
"publisher": "cucer",
"license": "MIT",
"author": {
"name": "Cagatay Ucer",
"url": "https://cagatayucer.com"
},
"repository": {
"type": "git",
"url": "https://github.com/cucer/webpr"
},
"icon": "assets/icon.png",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"webp",
"png",
"jpg",
"jpeg",
"bmp",
"tiff",
"convert"
],
"homepage": "https://github.com/cucer/webpr",
"bugs": {
"url": "https://github.com/cucer/webpr/issues"
},
"main": "./out/extension.js",
"activationEvents": [
"onCommand:webpr.convertToWebp"
],
"contributes": {
"commands": [
{
"command": "webpr.convertToWebp",
"title": "Convert Image to WebP 🌴",
"icon": {
"light": "assets/icon.png",
"dark": "assets/icon.png"
}
}
],
"menus": {
"explorer/context": [
{
"command": "webpr.convertToWebp",
"when": "resourceExtname == .png || resourceExtname == .jpg || resourceExtname == .jpeg || resourceExtname == .bmp",
"group": "navigation"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"fetch-binaries": "node ./scripts/fetch-sharp-binaries.mjs",
"prepackage": "npm run fetch-binaries",
"package": "vsce package",
"lint": "tsc --noEmit"
},
"dependencies": {
"sharp": "^0.34.4"
},
"optionalDependencies": {
"@img/sharp-darwin-arm64": "^0.34.5",
"@img/sharp-darwin-x64": "^0.34.5",
"@img/sharp-libvips-darwin-arm64": "^1.2.4",
"@img/sharp-libvips-darwin-x64": "^1.2.4",
"@img/sharp-libvips-linux-arm64": "^1.2.4",
"@img/sharp-libvips-linux-x64": "^1.2.4",
"@img/sharp-libvips-win32-ia32": "^1.2.4",
"@img/sharp-libvips-win32-x64": "^1.2.4",
"@img/sharp-linux-arm64": "^0.34.5",
"@img/sharp-linux-x64": "^0.34.5",
"@img/sharp-win32-ia32": "^0.34.5",
"@img/sharp-win32-x64": "^0.34.5"
},
"devDependencies": {
"@types/node": "^20.11.11",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.3"
}
}