-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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": "youversion-suggest",
"title": "YouVersion Bible Suggest",
"description": "Allows you to search the YouVersion Bible quickly and easily",
"version": "3.5.0",
"icon": "command-icon.png",
"author": "caleb531",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "lookup-reference",
"title": "Look up Bible Reference by Name",
"description": "Allows you to quickly jump to a particular Bible chapter, verse, or range of verses just by typing the name of that Bible reference",
"mode": "view"
},
{
"name": "search-bible",
"title": "Search the Bible by Phrase",
"description": "Allows you to find Bible verses related to a particular phrase or topic",
"mode": "view"
},
{
"name": "set-preferences",
"title": "Set Bible Preferences",
"description": "Allows you to set your preferred language, version, and more used for Bible searches",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.81.2",
"@whatwg-node/fetch": "^0.9.21",
"youversion-suggest": "^3.0.0-beta.7"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.1.0"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}