mirror of
https://github.com/kunkunsh/kunkun-ext-uuid.git
synced 2025-04-03 01:36:44 +00:00
52 lines
1.0 KiB
JSON
52 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-ext-uuid",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kunkunsh/kunkun-ext-uuid"
|
|
},
|
|
"kunkun": {
|
|
"name": "UUID Generater",
|
|
"shortDescription": "Generate UUID",
|
|
"longDescription": "Generate UUID",
|
|
"identifier": "kunkun-ext-uuid",
|
|
"permissions": [
|
|
"clipboard:write-text"
|
|
],
|
|
"demoImages": [],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "tabler:code"
|
|
},
|
|
"headlessCmds": [
|
|
{
|
|
"name": "Generate UUID V4",
|
|
"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",
|
|
"uuid": "^11.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"./dist",
|
|
".gitignore"
|
|
]
|
|
}
|