-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 4.05 KB
/
Copy pathpackage.json
File metadata and controls
152 lines (152 loc) · 4.05 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "wikislownik",
"title": "Wikislownik",
"description": "An extension for the Polish Wiktionary (Wikisłownik) that allows you to quickly search and view dictionary entries",
"icon": "extension-icon.png",
"author": "michael_fomenko",
"owner": "michaelfmnk",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "search",
"title": "Search",
"description": "Search for a word in the Polish Wiktionary",
"mode": "view"
},
{
"name": "vocabulary",
"title": "My Vocabulary",
"description": "View and manage your saved vocabulary list",
"mode": "view"
},
{
"name": "reminderNotifications",
"title": "Reminder System Notifications",
"description": "Background service to notify the user through a system notification when a reminder date is right up",
"mode": "no-view",
"interval": "1h"
}
],
"preferences": [
{
"name": "EN",
"title": "Language",
"description": "English as translation language",
"type": "checkbox",
"label": "English",
"default": true,
"required": false
},
{
"name": "UK",
"title": "",
"description": "Ukrainian as translation language",
"type": "checkbox",
"label": "Ukrainian",
"required": false
},
{
"name": "DE",
"title": "",
"description": "German as translation language",
"type": "checkbox",
"label": "German",
"required": false
},
{
"name": "FR",
"title": "",
"description": "French as translation language",
"type": "checkbox",
"label": "French",
"required": false
},
{
"name": "ES",
"title": "",
"description": "Español as translation language",
"type": "checkbox",
"label": "Español",
"required": false
},
{
"name": "PT",
"title": "",
"description": "Portuguese as translation language",
"type": "checkbox",
"label": "Portuguese",
"required": false
},
{
"name": "SW",
"title": "",
"description": "Swedish as translation language",
"type": "checkbox",
"label": "Swedish",
"required": false
},
{
"name": "CS",
"title": "",
"type": "checkbox",
"description": "Czech as translation language",
"label": "Czech",
"required": false
},
{
"name": "IT",
"title": "",
"description": "Italian as translation language",
"type": "checkbox",
"label": "Italian",
"required": false
},
{
"name": "NL",
"title": "",
"description": "Dutch as translation language",
"type": "checkbox",
"label": "Dutch",
"required": false
},
{
"name": "HU",
"title": "",
"description": "Hungarian as translation language",
"type": "checkbox",
"label": "Hungarian",
"required": false
}
],
"dependencies": {
"@iamtraction/google-translate": "^2.0.1",
"@raycast/api": "^1.94.2",
"@raycast/utils": "^1.17.0",
"@tanstack/react-query": "^5.68.0",
"@uidotdev/usehooks": "^2.4.1",
"node-fetch": "^3.3.2",
"node-html-markdown": "^1.3.0",
"node-html-parser": "^7.0.1"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.8.10",
"@types/react": "18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5",
"vitest": "^3.0.9"
},
"scripts": {
"build": "ray build",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"prepublishOnly": "echo \"\\n\\nIt seems like you are trying to publish the Raycast extension to npm.\\n\\nIf you did intend to publish it to npm, remove the \\`prepublishOnly\\` script and rerun \\`npm publish\\` again.\\nIf you wanted to publish it to the Raycast Store instead, use \\`npm run publish\\` instead.\\n\\n\" && exit 1",
"publish": "npx @raycast/api@latest publish"
}
}