mirror of
https://github.com/kunkunsh/kunkun-ext-ip-info.git
synced 2025-04-03 19:06:42 +00:00
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh/",
|
|
"name": "kunkun-ext-ip-info",
|
|
"version": "0.1.4",
|
|
"license": "MIT",
|
|
"module": "index.ts",
|
|
"repository": "https://github.com/kunkunsh/kunkun-ext-ip-info",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "IP Info",
|
|
"shortDescription": "Show your current IP Info and Search for IP Address",
|
|
"longDescription": "Will display you IP Address and more information about this IP address, including Geo Location, ASN, ISP. You can also search for a specific IP.",
|
|
"identifier": "ip-info",
|
|
"permissions": [
|
|
"clipboard:write-text",
|
|
"fetch:all"
|
|
],
|
|
"demoImages": [
|
|
"https://i.imgur.com/6rxNyTt.png"
|
|
],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "mdi:ip-network"
|
|
},
|
|
"templateUiCmds": [
|
|
{
|
|
"name": "IP Info",
|
|
"main": "dist/index.js",
|
|
"description": "Display your current IP addres and detailed information. Search for other IP address.",
|
|
"cmds": []
|
|
}
|
|
],
|
|
"customUiCmds": []
|
|
},
|
|
"scripts": {
|
|
"dev": "bun build.ts dev",
|
|
"build": "bun build.ts"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"package.json",
|
|
"mod.ts"
|
|
],
|
|
"dependencies": {
|
|
"@kksh/api": "^0.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"valibot": "1.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"packageManager": "pnpm@9.15.4"
|
|
}
|