forked from ploi/ploi-raycast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "ploi",
"title": "Ploi",
"description": "View and manage your ploi.io servers and sites",
"icon": "ploi-icon.png",
"author": "Cannonball",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Manage Servers and Sites",
"subtitle": "Ploi",
"icon": "ploi-icon.png",
"description": "Search and manage your Ploi servers or sites",
"mode": "view"
}
],
"preferences": [
{
"name": "ploi_api_key",
"type": "password",
"required": true,
"title": "Ploi API Key",
"description": "Generate from your Ploi profile",
"placeholder": "API Key"
},
{
"name": "ploi_ssh_user",
"type": "textfield",
"required": false,
"title": "Ploi SSH User",
"default": "ploi",
"description": "Change the SSH user to login with",
"placeholder": "SSH User"
}
],
"dependencies": {
"@raycast/api": "^1.55.2",
"axios": "^1.4.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "~17.0.1",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"react-devtools": "^4.22.1",
"typescript": "^4.5.4"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop"
}
}