Initial commit

This commit is contained in:
2024-01-19 16:49:00 +01:00
commit 6775863ed3
10 changed files with 100 additions and 0 deletions

40
package.json Normal file
View File

@@ -0,0 +1,40 @@
{
"$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"
}
}