-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1013 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1013 Bytes
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
{
"name": "@blocklet/model-pricing-data",
"version": "0.1.0",
"description": "AI model pricing data from official provider pages, updated daily",
"type": "module",
"scripts": {
"start": "tsx scripts/index.ts",
"scrape": "tsx scripts/index.ts",
"scrape:dry": "tsx scripts/index.ts --dry-run",
"scrape:no-llm": "tsx scripts/index.ts --no-llm",
"scrape:llm-only": "tsx scripts/index.ts --llm-only",
"scrape:openai": "tsx scripts/scrape-openai.ts --json",
"scrape:anthropic": "tsx scripts/scrape-anthropic.ts --json",
"scrape:google": "tsx scripts/scrape-google.ts --json",
"scrape:xai": "tsx scripts/scrape-xai.ts --json",
"scrape:deepseek": "tsx scripts/scrape-deepseek.ts --json",
"scrape:openrouter": "tsx scripts/fetch-openrouter.ts --json",
"diff": "tsx scripts/utils/diff-summary.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"@types/node": "^22.0.0"
}
}