forked from raycast/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 3.78 KB
/
package.json
File metadata and controls
149 lines (149 loc) · 3.78 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "models-dev",
"title": "Models Dev",
"description": "Explore AI model specifications, pricing, and capabilities from models.dev",
"icon": "extension-icon.png",
"author": "carlesandres",
"platforms": [
"macOS"
],
"categories": [
"Developer Tools",
"Data"
],
"preferences": [
{
"name": "enableBackgroundSync",
"title": "Background Sync",
"description": "Allow periodic background refresh of models data",
"type": "checkbox",
"label": "Enable background sync",
"default": false,
"required": false
}
],
"license": "MIT",
"keywords": [
"ai",
"models",
"models.dev",
"llm",
"gpt",
"claude",
"gemini",
"openai",
"anthropic",
"pricing",
"comparison",
"artificial intelligence"
],
"commands": [
{
"name": "search-models",
"title": "Search AI Models",
"subtitle": "Models Dev",
"description": "Search across all AI models by name, provider, or capability",
"mode": "view",
"keywords": [
"llm",
"gpt",
"claude",
"gemini",
"search",
"find"
]
},
{
"name": "browse-providers",
"title": "Search AI Providers",
"subtitle": "Models Dev",
"description": "Explore AI providers and their model offerings",
"mode": "view",
"keywords": [
"openai",
"anthropic",
"google",
"provider",
"vendor"
]
},
{
"name": "find-by-capability",
"title": "AI Models by Capability",
"subtitle": "Models Dev",
"description": "Filter models by multiple capabilities",
"mode": "view",
"keywords": [
"reasoning",
"vision",
"audio",
"tools",
"filter"
]
},
{
"name": "pricing-explorer",
"title": "AI Models by Price",
"subtitle": "Models Dev",
"description": "Compare model pricing across providers",
"mode": "view",
"keywords": [
"cost",
"pricing",
"cheap",
"expensive",
"budget"
]
},
{
"name": "compare-models",
"title": "Compare AI Models",
"subtitle": "Models Dev",
"description": "Select models to compare side-by-side",
"mode": "view",
"keywords": [
"compare",
"diff",
"versus",
"side-by-side"
]
},
{
"name": "background-sync",
"title": "Background Sync",
"subtitle": "Models Dev",
"description": "Refresh model data in the background",
"mode": "no-view",
"interval": "1h",
"disabledByDefault": true
}
],
"dependencies": {
"@raycast/api": "^1.104.3"
},
"devDependencies": {
"@raycast/eslint-config": "^2.1.1",
"@types/node": "25.1.0",
"@types/react": "19.2.10",
"@types/react-dom": "^19.0.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"react-dom": "^19.0.0",
"tsx": "^4.0.0",
"typescript": "^5.9.3"
},
"scripts": {
"build": "ray build",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"validate": "NODE_OPTIONS='--expose-gc' tsx --tsconfig tsconfig.validate.json scripts/validate-memory.tsx",
"validate:e2e": "tsx scripts/validate-e2e-compare-models.ts",
"prepublishOnly": "echo \"\\n\\nIt seems like you are trying to publish the Raycast extension to npm.\\n\\nIf you did intend to publish it to npm, remove the \\`prepublishOnly\\` script and rerun \\`npm publish\\` again.\\nIf you wanted to publish it to the Raycast Store instead, use \\`npm run publish\\` instead.\\n\\n\" && exit 1",
"publish": "npx @raycast/api@latest publish"
},
"overrides": {
"react": "19.2.4"
}
}