-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "upstash",
"title": "Upstash",
"description": "Displays a list of the Upstash products you use in the menu bar.",
"icon": "upstash-logo.png",
"author": "ademilter",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "upstash",
"title": "Upstash",
"description": "Displays a list of the Upstash products you use in the menu bar.",
"mode": "menu-bar"
}
],
"preferences": [
{
"name": "email",
"type": "textfield",
"title": "Email",
"description": "Please enter your Upstash account email",
"required": true
},
{
"name": "apiKey",
"type": "password",
"title": "API Key",
"description": "Please enter your Upstash API Key",
"required": true
}
],
"dependencies": {
"@raycast/api": "^1.83.2",
"@raycast/utils": "^1.17.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.16.11",
"@types/react": "18.3.11",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"build": "ray build -e dist -o dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}