feat: List Github notifications

This commit is contained in:
2024-01-24 08:53:36 +01:00
parent 6775863ed3
commit 2d2d47f55f
41 changed files with 3538 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
"name": "universal-inbox",
"title": "Universal Inbox",
"description": "Manage Universal Inbox notifications from Raycast",
"icon": "command-icon.png",
"icon": "ui-logo-transparent.png",
"author": "david_rousselie",
"owner": "universal-inbox",
"categories": [
@@ -11,24 +11,44 @@
"Productivity"
],
"license": "MIT",
"preferences": [
{
"name": "apiKey",
"description": "Your Universal Inbox key",
"type": "password",
"required": true,
"title": "Universal Inbox API Key",
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx"
},
{
"name": "universalInboxBaseUrl",
"description": "The Universal Inbox instance URL to use",
"type": "textfield",
"required": true,
"title": "Universal Inbox instance URL",
"placeholder": "https://app.universal-inbox.com"
}
],
"commands": [
{
"name": "index",
"title": "List notifications",
"title": "List Notifications",
"description": "List Universal Inbox notifications",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.65.1"
"@raycast/api": "^1.65.1",
"@raycast/utils": "^1.10.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"eslint": "^8.51.0",
"eslint": "^8.56.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
"typescript": "^5.3.3"
},
"scripts": {
"build": "ray build -e dist",
@@ -37,4 +57,4 @@
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}
}