58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/vicinaehq/vicinae/refs/heads/main/extra/schemas/extension.json",
|
|
"name": "gitmoji",
|
|
"title": "gitmoji",
|
|
"description": "Search and copy gitmojis to clipboard",
|
|
"categories": [],
|
|
"license": "MIT",
|
|
"author": "aksdb",
|
|
"contributors": [],
|
|
"pastContributors": [],
|
|
"icon": "extension_icon.png",
|
|
"commands": [
|
|
{
|
|
"name": "gitmoji",
|
|
"title": "gitmoji",
|
|
"subtitle": "gitmoji",
|
|
"description": "Search and copy gitmojis to clipboard",
|
|
"mode": "view"
|
|
}
|
|
],
|
|
"preferences": [
|
|
{
|
|
"name": "copyFormat",
|
|
"title": "Copy Format",
|
|
"description": "What to copy to the clipboard when selecting a gitmoji.",
|
|
"required": false,
|
|
"type": "dropdown",
|
|
"data": [
|
|
{ "title": "Unicode Emoji", "value": "emoji" },
|
|
{ "title": "Gitmoji Code", "value": "code" }
|
|
],
|
|
"default": "emoji"
|
|
},
|
|
{
|
|
"name": "directPaste",
|
|
"title": "Direct Paste",
|
|
"description": "Paste the gitmoji directly into the focused app instead of copying to the clipboard.",
|
|
"required": false,
|
|
"type": "checkbox",
|
|
"label": "Paste directly into the focused app",
|
|
"default": false
|
|
}
|
|
],
|
|
"scripts": {
|
|
"build": "vici build",
|
|
"dev": "vici develop",
|
|
"format": "biome format --write src",
|
|
"lint": "vici lint"
|
|
},
|
|
"dependencies": {
|
|
"@vicinae/api": "^0.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2",
|
|
"@biomejs/biome": "2.3.2"
|
|
}
|
|
}
|