-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
154 lines (154 loc) · 4.06 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
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "marginnote",
"title": "MarginNote",
"description": "Offical Raycast Extensition of MarginNote",
"icon": "marginnote.png",
"author": "ourongxing",
"license": "MIT",
"categories": [
"Applications",
"Productivity"
],
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"lint": "ray lint",
"fix-lint": "ray lint --fix"
},
"preferences": [
{
"name": "skipAlert",
"description": "Skip the unsigned mnaddon alert when open MarginNote",
"type": "checkbox",
"label": "Skip Alert",
"required": true,
"default": false
},
{
"name": "waitingTime",
"title": "Waiting Time",
"description": "Wait for MarginNote to open, and then skip the alert",
"type": "dropdown",
"data": [
{
"title": "2",
"value": "2"
},
{
"title": "3",
"value": "3"
},
{
"title": "4",
"value": "4"
},
{
"title": "5",
"value": "5"
},
{
"title": "6",
"value": "6"
}
],
"required": true,
"default": "3"
}
],
"commands": [
{
"name": "search-notebook",
"title": "Search Notebook",
"subtitle": "MarginNote",
"description": "Search notebook in MarginNote",
"mode": "view"
},
{
"name": "take-note",
"title": "Take Note",
"subtitle": "MarginNote",
"description": "Take note quickly. The note will be created as a child of the parent note that you set.",
"mode": "view",
"preferences": [
{
"name": "showConfetti",
"description": "Show confetti when creating note successfully to celebrate",
"type": "checkbox",
"label": "Show Confetti",
"required": true,
"default": false
},
{
"name": "parentNote1",
"title": "Parent Note 1",
"description": "Just a note url, which to be used as the parent note of new note",
"type": "textfield",
"required": true,
"placeholder": "marginnote3app://note/5842ED6F-EBAA-42B2-A929-AE5B1E599291"
},
{
"name": "parentNote2",
"title": "Parent Note 2",
"description": "You can also set the note alias",
"type": "textfield",
"required": true,
"placeholder": "alias=marginnote3app://note/5842ED6F-EBAA-42B2-A929-AE5B1E599291"
},
{
"name": "parentNote3",
"title": "Parent Note 3",
"description": "Exactly the same as above",
"type": "textfield",
"required": false
},
{
"name": "parentNote4",
"title": "Parent Note 4",
"description": "Exactly the same as above",
"type": "textfield",
"required": false
},
{
"name": "parentNote5",
"title": "Parent Note 5",
"description": "Exactly the same as above",
"type": "textfield",
"required": false
},
{
"name": "commonTags",
"title": "Common Tags",
"description": "Tags that you usually use",
"type": "textfield",
"required": false,
"placeholder": "#tag1 #tag2"
}
]
},
{
"name": "restart",
"title": "Restart Application",
"subtitle": "MarginNote",
"description": "Restart MarginNote and skip the unsigned mnaddon alert",
"mode": "no-view"
}
],
"dependencies": {
"@raycast/api": "^1.43.2",
"fs-extra": "^10.1.0",
"run-applescript": "^6.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "~18.11.9",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"react-devtools": "^4.26.1",
"typescript": "^4.8.4"
}
}