-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.52 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "bilibili",
"title": "Bilibili",
"description": "Get notify from bilibili",
"icon": "bilibili.png",
"author": "Fatpandac",
"categories": [
"Applications",
"Media"
],
"license": "MIT",
"commands": [
{
"name": "dynamicFeed",
"title": "Show Dynamic Feed",
"description": "Show all dynamic feed",
"preferences": [
{
"label": "Just show the dynamic videos",
"name": "justShowVideos",
"required": false,
"description": "Just show the dynamic videos",
"type": "checkbox",
"default": false
}
],
"mode": "view"
},
{
"name": "rcmdVideos",
"title": "Recommend Videos",
"description": "Show recommend videos",
"mode": "view"
},
{
"name": "searchVideos",
"title": "Search Videos",
"description": "Search videos",
"mode": "view"
},
{
"name": "notifications",
"title": "Notifications",
"description": "Delivering the news for you from your dynamic feed",
"preferences": [
{
"label": "Just notify the new videos",
"name": "justNotifyVideos",
"required": false,
"description": "Just notify the new videos",
"type": "checkbox",
"default": false
},
{
"title": "Path of terminal-notifier",
"name": "terminalNotifierPath",
"required": false,
"description": "If you have already installed terminal-notifier, you can find its path by running `which terminal-notifier` in the terminal.",
"type": "textfield"
}
],
"mode": "no-view",
"interval": "1m"
},
{
"name": "login",
"title": "Login Bilibili",
"description": "Show QRCode to login Bilibili",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.39.3",
"@raycast/utils": "^1.10.1",
"crypto-js": "^4.2.0",
"run-applescript": "^6.1.0"
},
"devDependencies": {
"@types/qrcode": "^1.5.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"got": "^12.4.1",
"prettier": "^2.5.1",
"qrcode": "^1.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}