whichmodel 1.0.0

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,65 @@
1
+ {
2
+ "name": "whichmodel",
3
+ "version": "1.0.0",
4
+ "description": "Tell me what you want to build. I'll tell you which AI model to use.",
5
+ "type": "module",
6
+ "bin": {
7
+ "whichmodel": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "dev": "tsx src/index.ts",
11
+ "build": "tsup",
12
+ "test": "vitest run",
13
+ "test:watch": "vitest",
14
+ "test:coverage": "vitest run --coverage",
15
+ "catalog:fetch": "tsx src/scripts/catalog-fetch.ts",
16
+ "lint": "tsc --noEmit",
17
+ "release:check": "npm run lint && npm test && npm run build",
18
+ "release:pack": "npm pack --dry-run",
19
+ "release:brew": "node scripts/generate-homebrew-formula.mjs"
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "engines": {
25
+ "node": ">=20.0.0"
26
+ },
27
+ "dependencies": {
28
+ "boxen": "^8.0.1",
29
+ "chalk": "^5.4.0",
30
+ "commander": "^13.0.0",
31
+ "neverthrow": "^8.2.0",
32
+ "ora": "^8.2.0",
33
+ "zod": "^4.3.6"
34
+ },
35
+ "devDependencies": {
36
+ "@types/node": "^22.10.1",
37
+ "@vitest/coverage-v8": "^3.1.0",
38
+ "tsup": "^8.4.0",
39
+ "tsx": "^4.19.2",
40
+ "typescript": "^5.7.2",
41
+ "vitest": "^3.1.0"
42
+ },
43
+ "keywords": [
44
+ "ai",
45
+ "llm",
46
+ "model",
47
+ "recommender",
48
+ "cli",
49
+ "openrouter"
50
+ ],
51
+ "author": "Oussama Nahiz",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/useit015/whichmodel.git"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/useit015/whichmodel/issues"
59
+ },
60
+ "homepage": "https://github.com/useit015/whichmodel#readme",
61
+ "publishConfig": {
62
+ "access": "public",
63
+ "provenance": true
64
+ }
65
+ }