-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "coinmarketcap-crypto-price-crawler",
"title": "Coinmarketcap Crypto Search",
"description": "A price crawler to search crypto price from Coinmarketcap.",
"icon": "coinmarketcap-icon.png",
"author": "SonicSpark",
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Search",
"subtitle": "Search Crypto",
"description": "Search for Coin Prices from CoinMarketCap",
"mode": "view"
},
{
"name": "watchlist",
"title": "Watchlist",
"subtitle": "View Watchlist",
"description": "View your crypto watchlist",
"mode": "view"
},
{
"name": "refresh",
"title": "Refresh",
"subtitle": "Refresh Crypto List",
"description": "Refresh existing Crypto List cache from CoinMarketCap",
"mode": "no-view"
}
],
"dependencies": {
"@raycast/api": "^1.89.0",
"@raycast/utils": "^1.18.1",
"axios": "^0.21.1",
"bignumber.js": "^9.1.2",
"cheerio": "^1.0.0-rc.10",
"dayjs": "^1.10.7",
"fs-extra": "^10.0.0",
"fuzzysort": "^1.1.4",
"node-fetch": "^3.0.0",
"prettier": "^3.4.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "~16.10.0",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"react-devtools": "^5.2.0",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"lint": "ray lint --fix"
}
}