-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.98 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
119
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "akkoma",
"title": "Akkoma",
"description": "Publish status from Raycast to Akkoma or Pleroma, and view your bookmarked status",
"icon": "akkoma-icon.png",
"author": "SevicheCC",
"categories": [
"Communication",
"News",
"Web"
],
"license": "MIT",
"commands": [
{
"name": "simple-status",
"title": "Add Simple Status",
"description": "Publish simple text status",
"mode": "view"
},
{
"name": "status",
"title": "Add Status",
"description": "Publish status with attenchments, or scheduled status",
"mode": "view"
},
{
"name": "bookmark",
"title": "View Bookmarks",
"description": "View your bookmarked statuses",
"mode": "view",
"preferences": [
{
"name": "bookmarkLimit",
"type": "textfield",
"required": false,
"title": "Maximum number of bookmarks",
"description": "Maximum number of bookmarks,Will be ignored if it's more than 40",
"placeholder": "default value : 20"
}
]
},
{
"name": "my-status",
"title": "View My Status",
"description": "View your statuses",
"mode": "view",
"preferences": [
{
"name": "statusLimit",
"type": "textfield",
"required": false,
"title": "Maximum number of statuses",
"description": "Maximum number of statuses to be show, Will be ignored if it's more than 40",
"placeholder": "default value : 20"
}
]
}
],
"preferences": [
{
"name": "instance",
"type": "textfield",
"required": true,
"title": "Instance's URL",
"description": "Your Akkoma / Pleroma instance's URL",
"placeholder": "such as: example.dev"
},
{
"name": "defaultVisibility",
"type": "dropdown",
"required": false,
"title": "Default Visiblity",
"description": "Status default visiblity",
"data": [
{
"title": "🌎 Public",
"value": "public"
},
{
"title": "🙈 Unlisted",
"value": "unlisted"
},
{
"title": "👥 Followers-only",
"value": "private"
},
{
"title": "✉️ Direct",
"value": "direct"
},
{
"title": "📍 Local-only",
"value": "local"
}
]
}
],
"dependencies": {
"@raycast/api": "^1.51.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.9.5"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}