This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 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
{
"name": "ohmymn",
"title": "OhMyMN",
"description": "Offical Raycast Extensition of OhMyMN. Used to manage shortcuts of OhMyMN.",
"icon": "logo.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": "actionInChinese",
"description": "All of custom shortcuts and actions will be shown in Chinese",
"type": "checkbox",
"label": "Action Name in Chinese",
"required": true,
"default": true
},
{
"name": "username",
"title": "Your name",
"description": "Displayed when you share shortcut",
"type": "textfield",
"default": "anonymous",
"required": true,
"placeholder": "Your name will be displayed when you share shortcut"
}
],
"commands": [
{
"name": "create_normal_shortcuts_quicklink",
"title": "Create Normal Shortcuts Quicklink",
"subtitle": "OhMyMN",
"description": "Restart marginote and skip the unsigned mnaddon alert",
"mode": "view"
},
{
"name": "gen_custom_shortcut",
"title": "Generate Custom Shortcut",
"subtitle": "OhMyMN",
"description": "Restart marginote and skip the unsigned mnaddon alert",
"mode": "view"
},
{
"name": "find_custom_shortcuts",
"title": "Find Custom Shortcuts",
"subtitle": "OhMyMN",
"description": "Restart marginote and skip the unsigned mnaddon alert",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.43.2",
"fs-extra": "^10.1.0",
"got": "^12.5.2",
"run-applescript": "^6.0.0",
"zustand": "^4.1.4"
},
"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"
}
}