-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.55 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "openjike",
"title": "OpenJike",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "Submit and browse posts of OpenJike.",
"icon": "command-icon.png",
"license": "AGPL-3.0",
"author": "sxzz",
"categories": [
"Applications",
"Web",
"Communication",
"News"
],
"commands": [
{
"name": "login",
"title": "Login Jike",
"description": "Login Jike as a new user",
"mode": "view"
},
{
"name": "post",
"title": "Post",
"description": "Create a new post",
"mode": "view"
},
{
"name": "user-list",
"title": "User List",
"description": "List all users",
"mode": "view"
},
{
"name": "feeds",
"title": "Feeds",
"description": "posts of users you followed",
"mode": "view"
},
{
"name": "like-top",
"title": "Like Top",
"description": "Leaderboard of likes",
"mode": "view"
}
],
"scripts": {
"build": "ray build -o dist",
"dev": "ray develop",
"lint": "eslint ."
},
"dependencies": {
"@raycast/api": "^1.49.3",
"execa": "^7.1.1",
"jike-sdk": "^0.23.2",
"react-use": "^17.4.0",
"undici": "^5.20.0"
},
"devDependencies": {
"@sxzz/eslint-config-prettier": "^2.4.6",
"@sxzz/eslint-config-ts": "^2.4.6",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^8.38.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4"
}
}