Files
vicinae-gitmoji/package.json
T
2026-08-20 16:41:26 +02:00

64 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.26.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.9",
"typescript": "^7.0.2"
}
}