mirror of
https://github.com/kunkunsh/kunkun-ext-qrcode.git
synced 2025-04-03 18:36:41 +00:00
105 lines
2.6 KiB
JSON
105 lines
2.6 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh/",
|
|
"name": "kunkun-ext-qrcode",
|
|
"license": "MIT",
|
|
"version": "0.1.6",
|
|
"description": "QRCode Extension",
|
|
"repository": "https://github.com/kunkunsh/kunkun-ext-qrcode",
|
|
"kunkun": {
|
|
"name": "QRCode",
|
|
"shortDescription": "Generate QRCode from text and Detect QRCode",
|
|
"longDescription": "Copy a url or any text and open the QRCode generation command, a QRCode will be displayed. Also supports detecting QRCode from screenshot.",
|
|
"identifier": "qrcode",
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "mingcute:qrcode-line"
|
|
},
|
|
"demoImages": [
|
|
"https://i.imgur.com/1tEbTjJ.png"
|
|
],
|
|
"permissions": [
|
|
"clipboard:read-text",
|
|
"clipboard:read-image",
|
|
"clipboard:write-text",
|
|
"clipboard:write-image",
|
|
{
|
|
"permission": "open:url",
|
|
"allow": [
|
|
{
|
|
"url": "https://**"
|
|
},
|
|
{
|
|
"url": "http://**"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"customUiCmds": [
|
|
{
|
|
"main": "/",
|
|
"dist": "build",
|
|
"devMain": "http://localhost:5173/",
|
|
"name": "Generate QRCode",
|
|
"cmds": []
|
|
},
|
|
{
|
|
"main": "/detect",
|
|
"dist": "build",
|
|
"devMain": "http://localhost:5173/detect",
|
|
"name": "Detect QRCode",
|
|
"cmds": []
|
|
}
|
|
],
|
|
"templateUiCmds": []
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"lint": "prettier --check . && eslint .",
|
|
"format": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"@kksh/api": "^0.1.7",
|
|
"@kksh/svelte": "0.1.4",
|
|
"clsx": "^2.1.1",
|
|
"easyqrcodejs": "^4.6.1",
|
|
"jsqr": "^1.4.0",
|
|
"lucide-svelte": "^0.416.0",
|
|
"mode-watcher": "^0.4.0",
|
|
"tailwind-merge": "^2.4.0",
|
|
"tailwind-variants": "^0.2.1",
|
|
"valibot": "^0.36.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-auto": "^3.0.0",
|
|
"@sveltejs/adapter-static": "^3.0.2",
|
|
"@sveltejs/kit": "^2.0.0",
|
|
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
|
"@tailwindcss/typography": "^0.5.13",
|
|
"@types/eslint": "^9.6.0",
|
|
"autoprefixer": "^10.4.19",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-svelte": "^2.36.0",
|
|
"globals": "^15.0.0",
|
|
"postcss": "^8.4.38",
|
|
"prettier": "^3.1.1",
|
|
"prettier-plugin-svelte": "^3.1.2",
|
|
"prettier-plugin-tailwindcss": "^0.6.4",
|
|
"svelte": "^4.2.7",
|
|
"svelte-check": "^3.6.0",
|
|
"tailwindcss": "^3.4.4",
|
|
"typescript": "^5.0.0",
|
|
"typescript-eslint": "^8.0.0-alpha.20",
|
|
"vite": "^5.0.3"
|
|
},
|
|
"type": "module",
|
|
"packageManager": "pnpm@9.9.0"
|
|
}
|