-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
142 lines (142 loc) · 3.57 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "obsidian-bookmarks",
"title": "Obsidian Bookmarks",
"description": "Manage your bookmarked links with Obsidian. Save, search, and access your bookmarks.",
"icon": "obsidian-bookmarks.png",
"author": "dru89",
"categories": [
"Productivity",
"Applications",
"Web"
],
"license": "MIT",
"commands": [
{
"name": "save-bookmark",
"title": "Save Bookmark",
"description": "Save a bookmark to Obsidian",
"mode": "view"
},
{
"name": "search-bookmarks",
"title": "Search Bookmarks",
"description": "Save your Obsidian bookmarks",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.34.1",
"front-matter": "^4.0.2",
"fuse.js": "^6.6.0",
"run-applescript": "^6.0.0",
"run-jxa": "^3.0.0",
"slugify": "^1.6.5",
"ts-dedent": "^2.2.0"
},
"devDependencies": {
"@types/node": "~16.10.0",
"@types/react": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
},
"preferences": [
{
"name": "vaultPath",
"title": "Obsidian Vault Path",
"description": "The file path to your Obsidian vault directory. We use this to create new files.",
"type": "textfield",
"required": true
},
{
"name": "bookmarksPath",
"title": "Bookmarks Subfolder",
"description": "The subfolder where all of your bookmarks should be stored.",
"type": "textfield",
"required": true,
"default": "Bookmarks"
},
{
"name": "defaultFormAction",
"title": "Default Form Action",
"description": "The default action to take when submitting a form.",
"type": "dropdown",
"required": true,
"default": "openObsidian",
"data": [
{
"title": "Open Obsidian",
"value": "openObsidian"
},
{
"title": "Copy Obsidian Link",
"value": "copyObsidianUrl"
},
{
"title": "Copy Obsidian Link as Markdown",
"value": "copyObsidianUrlAsMarkdown"
},
{
"title": "Open Link",
"value": "openUrl"
},
{
"title": "Copy Link",
"value": "copyUrl"
},
{
"title": "Copy Link as Markdown",
"value": "copyUrlAsMarkdown"
}
]
},
{
"name": "defaultItemAction",
"title": "Default Item Action",
"description": "The default action to take on an item in your bookmarks.",
"type": "dropdown",
"required": true,
"default": "showDetails",
"data": [
{
"title": "Show Details",
"value": "showDetails"
},
{
"title": "Open Obsidian",
"value": "openObsidian"
},
{
"title": "Copy Obsidian Link",
"value": "copyObsidianUrl"
},
{
"title": "Copy Obsidian Link as Markdown",
"value": "copyObsidianUrlAsMarkdown"
},
{
"title": "Open Link",
"value": "openUrl"
},
{
"title": "Copy Link",
"value": "copyUrl"
},
{
"title": "Copy Link as Markdown",
"value": "copyUrlAsMarkdown"
}
]
}
]
}