40 lines
989 B
JSON
40 lines
989 B
JSON
{
|
|
"$schema": "https://www.raycast.com/schemas/extension.json",
|
|
"name": "universal-inbox",
|
|
"title": "Universal Inbox",
|
|
"description": "Manage Universal Inbox notifications from Raycast",
|
|
"icon": "command-icon.png",
|
|
"author": "david_rousselie",
|
|
"owner": "universal-inbox",
|
|
"categories": [
|
|
"Applications",
|
|
"Productivity"
|
|
],
|
|
"license": "MIT",
|
|
"commands": [
|
|
{
|
|
"name": "index",
|
|
"title": "List notifications",
|
|
"description": "List Universal Inbox notifications",
|
|
"mode": "view"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"@raycast/api": "^1.65.1"
|
|
},
|
|
"devDependencies": {
|
|
"@raycast/eslint-config": "^1.0.6",
|
|
"@types/node": "20.8.10",
|
|
"@types/react": "18.2.27",
|
|
"eslint": "^8.51.0",
|
|
"prettier": "^3.0.3",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"scripts": {
|
|
"build": "ray build -e dist",
|
|
"dev": "ray develop",
|
|
"fix-lint": "ray lint --fix",
|
|
"lint": "ray lint",
|
|
"publish": "npx @raycast/api@latest publish"
|
|
}
|
|
} |