mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-ext-string-utils",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "String Utils",
|
|
"shortDescription": "A string utility headless Extension",
|
|
"longDescription": "A string utility headless Extension",
|
|
"identifier": "kunkun-ext-string-utils",
|
|
"permissions": [
|
|
"clipboard:write-text",
|
|
"clipboard:read-text"
|
|
],
|
|
"demoImages": [],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "tabler:code"
|
|
},
|
|
"headlessCmds": [
|
|
{
|
|
"name": "Convert clipboard text to Camel Case",
|
|
"main": "dist/index.js",
|
|
"cmds": []
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "bun build.ts dev",
|
|
"build": "bun build.ts"
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "0.1.3",
|
|
"i18next": "^23.15.1",
|
|
"lodash": "^4.17.21",
|
|
"lodash.camelcase": "^4.3.0",
|
|
"uuid": "^11.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/lodash": "^4.17.15"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
".gitignore"
|
|
]
|
|
}
|