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