61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://www.raycast.com/schemas/extension.json",
|
|
"name": "universal-inbox",
|
|
"title": "Universal Inbox",
|
|
"description": "Manage Universal Inbox notifications from Raycast",
|
|
"icon": "ui-logo-transparent.png",
|
|
"author": "david_rousselie",
|
|
"owner": "universal-inbox",
|
|
"categories": [
|
|
"Applications",
|
|
"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",
|
|
"description": "List Universal Inbox notifications",
|
|
"mode": "view"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"@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.56.0",
|
|
"prettier": "^3.0.3",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"scripts": {
|
|
"build": "ray build -e dist",
|
|
"dev": "ray develop",
|
|
"fix-lint": "ray lint --fix",
|
|
"lint": "ray lint",
|
|
"publish": "npx @raycast/api@latest publish"
|
|
}
|
|
}
|