-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.9 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "laravel-forge",
"title": "Laravel Forge",
"description": "View and manage your Laravel Forge-managed servers",
"icon": "command-icon.png",
"author": "KevinBatdorf",
"contributors": [
"macbookandrew"
],
"license": "MIT",
"categories": [
"Productivity",
"Developer Tools"
],
"commands": [
{
"name": "index",
"title": "Manage Servers",
"subtitle": "Laravel Forge",
"icon": "command-icon.png",
"description": "Search and manage your Laravel Forge servers and sites",
"mode": "view",
"arguments": [
{
"name": "server",
"placeholder": "Server",
"type": "text",
"required": false
}
]
},
{
"name": "check-deploy-status",
"title": "Forge Deployments",
"description": "Shows sites that are currently being deployed",
"mode": "menu-bar",
"interval": "10s"
}
],
"preferences": [
{
"name": "laravel_forge_api_key",
"type": "password",
"required": true,
"title": "Laravel Forge API Key",
"description": "Generate from your Laravel Forge profile",
"placeholder": "API Key"
},
{
"name": "laravel_forge_ssh_user",
"type": "textfield",
"required": false,
"title": "Laravel Forge SSH User",
"default": "forge",
"description": "Change the SSH user to login with",
"placeholder": "SSH User"
},
{
"name": "laravel_forge_api_key_two",
"type": "password",
"required": false,
"title": "Laravel Forge API Key 2 (optional)",
"description": "Optionally add a second account.",
"placeholder": "API Key (optional)"
},
{
"name": "laravel_forge_ssh_user_two",
"type": "textfield",
"required": false,
"title": "Laravel Forge SSH User 2 (optional)",
"default": "forge",
"description": "Change the SSH user to login with ont he second account",
"placeholder": "SSH User"
}
],
"dependencies": {
"@raycast/api": "^1.49.3",
"@raycast/utils": "^1.5.2",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"node-fetch": "^3.3.1",
"run-applescript": "^6.1.0",
"swr": "^2.1.3"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@raycast/eslint-config": "1.0.5",
"@types/lodash": "^4.14.194",
"@types/node": "~18.15.11",
"@types/react": "^18.0.35",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"node-ray": "^1.19.4",
"prettier": "2.8.7",
"react-devtools": "^4.27.4",
"typescript": "^5.0.4"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}