-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.8 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "raycast-charts",
"title": "Raycast Charts",
"description": "Charts about the Raycast Store",
"icon": "analytics.png",
"author": "tonka3000",
"license": "MIT",
"commands": [
{
"name": "extension_charts",
"title": "Extension Charts",
"description": "Charts ranked by extension installation count",
"mode": "view"
},
{
"name": "extensions_news",
"title": "Extension News",
"description": "Show extensions that are new or have been updated",
"mode": "view"
},
{
"name": "author_charts",
"title": "Author Charts",
"description": "Charts ranked by installation count of extensions authors",
"mode": "view"
},
{
"name": "store",
"title": "Search Raycast Store",
"description": "Show the Raycast Store",
"mode": "view"
}
],
"preferences": [
{
"name": "showinstallscompact",
"type": "checkbox",
"label": "Show human-readable numbers",
"required": false,
"default": true,
"title": "Installs",
"description": "Show numbers in human-readable format"
}
],
"dependencies": {
"@raycast/api": "^1.79.0",
"@raycast/utils": "^1.10.1",
"node-fetch": "^3.2.3",
"node-localstorage": "^2.2.1",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "^20.8.10",
"@types/node-localstorage": "^1.3.0",
"@types/react": "^18.2.27",
"@types/react-dom": "^18.2.0",
"eslint": "^7.32.0",
"prettier": "^3.0.1",
"react": "^18.2.0",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
}
}