-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "mochi-gg",
"title": "Get Mochi - https://mochi.gg",
"description": "Bring Mochi to your Raycast",
"icon": "command-icon.png",
"author": "hieuvd",
"categories": [
"Finance"
],
"license": "MIT",
"commands": [
{
"name": "ticker",
"title": "Ticker",
"subtitle": "View token price",
"description": "View token price",
"mode": "view",
"arguments": [
{
"name": "token",
"placeholder": "Token ID or symbol",
"type": "text",
"required": true
}
]
},
{
"name": "wl",
"title": "Watch List",
"subtitle": "View your watch list",
"description": "View your watch list",
"mode": "view"
},
{
"name": "market",
"title": "Coin Market",
"subtitle": "View coin market data",
"description": "View coin market data",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.49.3",
"@raycast/utils": "^1.5.2",
"@total-typescript/ts-reset": "^0.4.2",
"async": "^3.2.4",
"axios": "^1.3.5",
"dayjs": "^1.11.7",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"swr": "^2.1.3"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.5",
"@types/async": "^3.2.18",
"@types/lodash": "^4.14.194",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
},
"version": "0.0.0"
}