-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.6 KB
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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "crud-admin-panel",
"title": "CRUD Admin Panel",
"description": "An admin panel to create, read, update, and delete user entities.",
"icon": "icon.png",
"author": "thomas",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "blog",
"title": "Library",
"subtitle": "Save, manage and share what's on your mind",
"description": "Save, manage and share what's on your mind",
"mode": "view"
}
],
"preferences": [
{
"type": "textfield",
"name": "site",
"title": "Site",
"description": "Your WordPress site address",
"required": true
},
{
"type": "textfield",
"name": "username",
"title": "Username",
"description": "Your WordPress username",
"required": true
},
{
"type": "textfield",
"name": "password",
"title": "Password",
"description": "Application password",
"required": true
}
],
"dependencies": {
"@raycast/api": "latest",
"@raycast/utils": "^1.4.7",
"email-validator": "^2.0.4",
"form-data": "^4.0.0",
"nanoid": "^4.0.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "18.18.4",
"@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": "ray publish"
}
}