modelpedia 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,97 @@
1
+ {
2
+ "name": "modelpedia",
3
+ "version": "0.0.1",
4
+ "description": "Open catalog of AI model data — specs, pricing, and capabilities across 30+ providers and 2000+ models",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.mts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.mts",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "generate": "bun scripts/generate.ts",
26
+ "prebuild": "bun run generate",
27
+ "build": "tsdown",
28
+ "lint": "tsc --noEmit",
29
+ "validate": "bun scripts/validate.ts",
30
+ "validate:changes": "bun scripts/validate-changes.ts",
31
+ "changes": "bun scripts/detect-changes.ts",
32
+ "fetch:openai": "bun scripts/fetch-openai.ts",
33
+ "fetch:anthropic": "bun scripts/fetch-anthropic.ts",
34
+ "fetch:google": "bun scripts/fetch-google.ts",
35
+ "fetch:mistral": "bun scripts/fetch-mistral.ts",
36
+ "fetch:deepseek": "bun scripts/fetch-deepseek.ts",
37
+ "fetch:xai": "bun scripts/fetch-xai.ts",
38
+ "fetch:cohere": "bun scripts/fetch-cohere.ts",
39
+ "fetch:openrouter": "bun scripts/fetch-openrouter.ts",
40
+ "fetch:perplexity": "bun scripts/fetch-perplexity.ts",
41
+ "fetch:azure": "bun scripts/fetch-azure.ts",
42
+ "fetch:groq": "bun scripts/fetch-groq.ts",
43
+ "fetch:nvidia": "bun scripts/fetch-nvidia.ts",
44
+ "fetch:together": "bun scripts/fetch-together.ts",
45
+ "fetch:fireworks": "bun scripts/fetch-fireworks.ts",
46
+ "fetch:amazon": "bun scripts/fetch-amazon.ts",
47
+ "fetch:vercel": "bun scripts/fetch-vercel.ts",
48
+ "fetch:cloudflare": "bun scripts/fetch-cloudflare.ts",
49
+ "fetch:zai": "bun scripts/fetch-zai.ts",
50
+ "fetch:opencode": "bun scripts/fetch-opencode.ts",
51
+ "fetch:ollama": "bun scripts/fetch-ollama.ts",
52
+ "fetch:minimax": "bun scripts/fetch-minimax.ts",
53
+ "fetch:huggingface": "bun scripts/fetch-huggingface.ts",
54
+ "fetch:alibaba": "bun scripts/fetch-alibaba.ts",
55
+ "fetch:cerebras": "bun scripts/fetch-cerebras.ts",
56
+ "fetch:meta": "bun scripts/fetch-meta.ts",
57
+ "fetch:baseten": "bun scripts/fetch-baseten.ts",
58
+ "fetch:qwen": "bun scripts/fetch-qwen.ts",
59
+ "fetch:vertex": "bun scripts/fetch-vertex.ts",
60
+ "fetch:moonshot": "bun scripts/fetch-moonshot.ts",
61
+ "fetch:cursor": "bun scripts/fetch-cursor.ts",
62
+ "fetch:all": "bun run fetch:openai && bun run fetch:anthropic && bun run fetch:google && bun run fetch:mistral && bun run fetch:deepseek && bun run fetch:xai && bun run fetch:cohere && bun run fetch:zai && bun run fetch:minimax && bun run fetch:alibaba && bun run fetch:meta && bun run fetch:moonshot && bun run fetch:cerebras && bun run fetch:baseten && bun run fetch:openrouter && bun run fetch:perplexity && bun run fetch:azure && bun run fetch:groq && bun run fetch:nvidia && bun run fetch:together && bun run fetch:fireworks && bun run fetch:amazon && bun run fetch:vercel && bun run fetch:vertex && bun run fetch:cloudflare && bun run fetch:opencode && bun run fetch:ollama && bun run fetch:huggingface && bun run fetch:qwen && bun run fetch:cursor",
63
+ "prepublishOnly": "bun run build"
64
+ },
65
+ "keywords": [
66
+ "ai",
67
+ "model",
68
+ "llm",
69
+ "openai",
70
+ "anthropic",
71
+ "google",
72
+ "gemini",
73
+ "claude",
74
+ "gpt",
75
+ "pricing",
76
+ "catalog",
77
+ "compare"
78
+ ],
79
+ "author": "AgentbaseAI Inc.",
80
+ "license": "MIT",
81
+ "homepage": "https://modelpedia.dev",
82
+ "bugs": {
83
+ "url": "https://github.com/assistant-ui/modelpedia/issues"
84
+ },
85
+ "repository": {
86
+ "type": "git",
87
+ "url": "https://github.com/assistant-ui/modelpedia",
88
+ "directory": "packages/data"
89
+ },
90
+ "publishConfig": {
91
+ "access": "public"
92
+ },
93
+ "devDependencies": {
94
+ "tsdown": "^0.21.4",
95
+ "typescript": "catalog:"
96
+ }
97
+ }