{ "$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" } ], "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" } }