forked from raycast/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "aleph",
"title": "Aleph Tools",
"description": "A set of text tools to work with Hebrew text in Raycast.",
"icon": "extension_icon.png",
"author": "d7mtg",
"license": "MIT",
"commands": [
{
"name": "remove",
"title": "Remove Niqqud",
"description": "Removes all niqqud from your current selection and paste it back to your selection.",
"mode": "no-view",
"icon": "remove.png"
},
{
"name": "reverse",
"title": "Reverse Text",
"description": "Reverses the order of the letters in your current selection and paste it back to your selection.",
"mode": "no-view",
"icon": "reverse.png"
},
{
"name": "to-hebrew",
"title": "To Hebrew",
"description": "Converts your current selection to Hebrew and paste it back to your selection.",
"mode": "no-view",
"icon": "tohebrew.png"
},
{
"name": "to-latin",
"title": "To Latin",
"description": "Converts your current selection to Latin and paste it back to your selection.",
"mode": "no-view",
"icon": "tolatin.png"
}
],
"dependencies": {
"@raycast/api": "^1.55.0",
"js-base64": "3.7.2",
"run-applescript": "6.0.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"eslint": "8.2.0",
"react-devtools": "4.21.0",
"typescript": "4.4.4"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop"
}
}