-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "public-provider-conf",
"version": "1.0.0",
"description": "A tool to fetch and aggregate AI model information from various providers",
"main": "build/index.cjs",
"bin": {
"public-provider-conf": "./build/cli.js"
},
"scripts": {
"build": "vite build -c vite.config.ts && vite build -c vite.cli.config.ts",
"dev": "ts-node src/cli.ts fetch-all",
"start": "node build/cli.js fetch-all",
"clean": "rm -rf build dist/*.js dist/*.d.ts dist/*.map",
"auto-update": "node scripts/auto-update.mjs"
},
"keywords": [
"ai",
"models",
"providers",
"cli",
"typescript"
],
"author": "ThinkInAIXYZ",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"undici": "^7.16.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"ts-node": "^10.9.0",
"typescript": "^5.2.0",
"vite": "npm:rolldown-vite@latest"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@latest"
}
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}