mirror of
https://github.com/arv-anshul/kunkun-search-emoji.git
synced 2025-04-03 17:36:41 +00:00

- Remove dep `unicode-emoji-json` package - Searching improved via virtual list, thanks @Huakun - Use "lodash/startCase" for emoji title - Better filtering with `emojilib`'s emoji keywords
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-search-emoji",
|
|
"version": "0.1.1",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/arv-anshul/kunkun-search-emoji"
|
|
},
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "Search Emoji",
|
|
"shortDescription": "Extension to search emoji using Kunkun",
|
|
"longDescription": "A Kunkun extension to search and copy emoji in clipboard faster than any native method.",
|
|
"identifier": "kunkun-search-emoji",
|
|
"permissions": [
|
|
"clipboard:write-text",
|
|
{
|
|
"permission": "open:url",
|
|
"allow": [
|
|
{
|
|
"url": "https://github.com/arv-anshul/kunkun-search-emoji"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"demoImages": [
|
|
"https://raw.githubusercontent.com/arv-anshul/kunkun-search-emoji/refs/heads/main/public/screenshot.png"
|
|
],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "fluent:emoji-20-filled",
|
|
"hexColor": "#FFFF00"
|
|
},
|
|
"templateUiCmds": [
|
|
{
|
|
"name": "Search Emoji",
|
|
"main": "dist/index.js",
|
|
"cmds": []
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "bun build.ts dev",
|
|
"build": "bun build.ts"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "0.1.5",
|
|
"emojilib": "^4.0.1",
|
|
"i18next": "^23.16.8",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.17.16",
|
|
"@types/bun": "^1.2.4"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
".gitignore"
|
|
]
|
|
}
|