mirror of
https://github.com/joel-st/kunkun-nostr-goto-repo.git
synced 2025-04-04 09:36:41 +00:00
100 lines
2.3 KiB
JSON
100 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://schema.kunkun.sh",
|
|
"name": "kunkun-ext-nostr-goto-repo",
|
|
"version": "1.1.2",
|
|
"license": "CC0-1.0",
|
|
"type": "module",
|
|
"kunkun": {
|
|
"name": "Nostr open NIP Repository",
|
|
"shortDescription": "Opens the NIP repository in your browser",
|
|
"longDescription": "Opens the NIP repository in your browser",
|
|
"identifier": "nostr-goto-repo",
|
|
"permissions": [
|
|
{
|
|
"permission": "open:url",
|
|
"allow": [
|
|
{
|
|
"url": "https://github.com/**"
|
|
},
|
|
{
|
|
"url": "https://nips.nostr.com/**"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"demoImages": [],
|
|
"icon": {
|
|
"type": "iconify",
|
|
"value": "majesticons:open"
|
|
},
|
|
"headlessCmds": [
|
|
{
|
|
"name": "Nostr Open NIP Repository (github.com)",
|
|
"main": "dist/index-github.js",
|
|
"cmds": []
|
|
},
|
|
{
|
|
"name": "Nostr Open NIP Repository (nostr.com)",
|
|
"main": "dist/index-nostrcom.js",
|
|
"cmds": []
|
|
}
|
|
],
|
|
"customUiCmds": [
|
|
{
|
|
"main": "/",
|
|
"dist": "dist",
|
|
"devMain": "http://localhost:5173",
|
|
"name": "Nostr Open Specific NIP",
|
|
"cmds": []
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dev": "concurrently \"bun build.ts dev --headless\" \"vite\"",
|
|
"dev:headless": "bun build.ts dev --headless",
|
|
"dev:ui": "vite",
|
|
"build": "bun build.ts --headless && vite build",
|
|
"build:headless": "bun build.ts --headless",
|
|
"build:ui": "vite build"
|
|
},
|
|
"dependencies": {
|
|
"@iconify/react": "^5.2.0",
|
|
"@kksh/api": "0.1.5",
|
|
"@kksh/react": "0.1.1",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"i18next": "^23.15.1",
|
|
"preact": "^10.19.6"
|
|
},
|
|
"devDependencies": {
|
|
"@preact/preset-vite": "^2.8.1",
|
|
"@types/bun": "latest",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"autoprefixer": "^10.4.19",
|
|
"concurrently": "^9.1.2",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"eslint-plugin-react-refresh": "^0.4.7",
|
|
"postcss": "^8.4.38",
|
|
"tailwindcss": "^3.4.6",
|
|
"vite": "^5.4.9"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"package.json",
|
|
"readme.md",
|
|
".gitignore"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/joel-st/kunkun-nostr-goto-repo"
|
|
},
|
|
"keywords": [
|
|
"nostr",
|
|
"NIP"
|
|
]
|
|
}
|