-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
163 lines (163 loc) · 4.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
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
155
156
157
158
159
160
161
162
163
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "common-directory",
"title": "Common Directory",
"description": "Quickly open or show common directory in Finder.",
"icon": "extension-icon.png",
"author": "koinzhang",
"categories": [
"Productivity",
"System"
],
"license": "MIT",
"commands": [
{
"name": "open-common-directory",
"title": "Open Common Directory",
"subtitle": "Common Directory",
"icon": "open-common-directory.png",
"description": "Quickly open or show common directory in Finder.",
"mode": "view",
"preferences": [
{
"name": "showOpenDirectory",
"type": "checkbox",
"required": false,
"title": "More Directory",
"label": "Show Open Directories From Finder",
"description": "Populate list of open directories within Finder to the list. There will be some delay.",
"default": false
},
{
"name": "SortBy",
"type": "dropdown",
"required": false,
"title": "Directory Sort by",
"description": "Directory sorting method (default: Rank).",
"default": "Rank",
"data": [
{
"title": "Rank",
"value": "Rank"
},
{
"title": "Name ↑",
"value": "Name+"
},
{
"title": "Name ↓",
"value": "Name-"
}
]
}
]
},{
"name": "send-file-to-directory",
"title": "Send File to Directory",
"subtitle": "Common Directory",
"icon": "send-file-to.png",
"description": "Send selected files or folders to common directory.",
"mode": "view",
"preferences": [
{
"name": "showOpenDirectory",
"type": "checkbox",
"required": false,
"title": "More Directory",
"label": "Show Open Directories From Finder",
"description": "Populate list of open directories within Finder to the list.There will be some delay.",
"default": false
},
{
"name": "openDestDirectory",
"type": "checkbox",
"required": false,
"title": "Advanced Operations",
"label": "Open Destination Directory",
"description": "After successfully moving out the files, open the destination folder.",
"default": false
},
{
"name": "deleteEmptyDirectory",
"type": "checkbox",
"required": false,
"label": "Delete Empty Directory",
"description": "After successfully moving out the files, delete the original folder if the folder is empty.",
"default": false
},
{
"name": "primaryAction",
"type": "dropdown",
"required": false,
"title": "Primary action",
"description": "Primary action when send files.",
"default": "copy",
"data": [
{
"title": "Move",
"value": "move"
},
{
"title": "Copy",
"value": "copy"
}
]
},
{
"name": "SortBy",
"type": "dropdown",
"required": false,
"title": "Directory Sort by",
"description": "Directory sorting method (default: Rank).",
"default": "Rank",
"data": [
{
"title": "Rank",
"value": "Rank"
},
{
"title": "Name ↑",
"value": "Name+"
},
{
"title": "Name ↓",
"value": "Name-"
}
]
}
]
},
{
"name": "add-common-directory",
"title": "Add Common Directory",
"subtitle": "Common Directory",
"icon": "add-common-directory.png",
"description": "Add common directory.",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.35.1",
"fs-extra": "^10.1.0",
"file-url": "^4.0.0",
"run-applescript": "^6.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@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",
"react-devtools": "^4.19.2",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
}
}