-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "miniflux",
"title": "Miniflux",
"description": "A Raycast extension for Miniflux",
"icon": "miniflux-icon.png",
"author": "SevicheCC",
"license": "MIT",
"categories": [
"News",
"Web"
],
"commands": [
{
"name": "add-subscription",
"title": "Subscribe to Feed",
"subtitle": "Miniflux",
"description": "Subscribe to a new feed",
"mode": "view"
},
{
"name": "search",
"title": "Search Feeds",
"subtitle": "Miniflux",
"description": "Search entries in your subscribed feeds",
"mode": "view",
"preferences": [
{
"name": "searchLimit",
"type": "textfield",
"required": false,
"title": "Max search results",
"description": "high numbers could lead to worse performance",
"placeholder": "10"
}
]
},
{
"name": "read-recent-entries",
"title": "Read Recent Feed Entries",
"subtitle": "Miniflux",
"description": "Read the recent entries from your subscribed feeds in Raycast",
"mode": "view",
"preferences": [
{
"name": "feedLimit",
"type": "textfield",
"required": false,
"title": "The latest feeds show on first page",
"description": "High numbers could lead to poor performance.",
"placeholder": "30"
}
]
},
{
"name": "open-miniflux",
"title": "Open Miniflux",
"subtitle": "Miniflux",
"description": "Open Miniflux RSS reader",
"mode": "view"
},
{
"name": "refresh-all-feeds",
"title": "Refresh All Feeds",
"subtitle": "Miniflux",
"description": "Refresh all RSS feeds",
"mode": "no-view",
"interval": "1d"
}
],
"preferences": [
{
"name": "baseUrl",
"type": "textfield",
"required": true,
"title": "Miniflux URL",
"description": "The URL of your Miniflux server",
"placeholder": "E.g. https://hosting.miniflux.app/"
},
{
"name": "apiKey",
"type": "password",
"required": true,
"title": "API Key",
"description": "Your Miniflux API key from 'Settings > API Keys > Create a new API key' in Miniflux",
"placeholder": "Enter your Miniflux API Key."
},
{
"name": "readwiseToken",
"type": "password",
"required": false,
"title": "Readwise Access Token",
"description": "Generate a token at: https://readwise.io/access_token",
"placeholder": "Generate a token at: https://readwise.io/access_toke"
}
],
"dependencies": {
"@raycast/api": "^1.51.1",
"@raycast/utils": "^1.6.1",
"node-fetch": "^3.3.1",
"node-html-markdown": "^1.3.0"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.5",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^7.32.0",
"prettier": "^2.8.8",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}