modelinfo 0.1.0 → 0.1.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/README.md CHANGED
@@ -98,6 +98,14 @@ seed/
98
98
 
99
99
  ## Publish
100
100
 
101
+ ```bash
102
+ bun release
103
+ ```
104
+
105
+ `bun release` is an interactive release flow. It lets you choose the next version, publish to `latest` or `beta`, runs checks, creates a release commit and git tag, then publishes to npm.
106
+
107
+ For a manual publish without the helper:
108
+
101
109
  ```bash
102
110
  bun run build:seed
103
111
  bun run build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "modelinfo",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A fast CLI to explore AI model capabilities, pricing, limits, and provider metadata.",
5
5
  "keywords": [
6
6
  "ai",
@@ -44,18 +44,22 @@
44
44
  "lint": "eslint . --max-warnings 0",
45
45
  "lint:fix": "eslint . --fix",
46
46
  "prepack": "npm run build:seed && npm run build",
47
+ "release": "tsx scripts/release.ts",
47
48
  "start": "tsx dist/cli.js",
48
49
  "test": "vitest run"
49
50
  },
50
51
  "dependencies": {
52
+ "@clack/prompts": "^0.10.1",
51
53
  "cli-table3": "^0.6.5",
52
54
  "commander": "^13.1.0",
53
55
  "fuse.js": "^7.1.0",
56
+ "semver": "^7.7.1",
54
57
  "zod": "^3.24.2"
55
58
  },
56
59
  "devDependencies": {
57
60
  "@eslint/js": "^9.22.0",
58
61
  "@types/node": "^22.13.14",
62
+ "@types/semver": "^7.5.8",
59
63
  "eslint": "^9.22.0",
60
64
  "globals": "^16.0.0",
61
65
  "prettier": "^3.5.3",
package/seed/index.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schema_version": 1,
3
3
  "source_updated_at": 1772914635257,
4
- "generated_at": 1772951385389,
4
+ "generated_at": 1772952444565,
5
5
  "provider_count": 106,
6
6
  "model_count": 5171,
7
7
  "providers": [
package/seed/version.json CHANGED
@@ -3,6 +3,6 @@
3
3
  "cache_origin": "bundled",
4
4
  "local_updated_at": 1772914635257,
5
5
  "last_checked_remote_updated_at": 1772914635257,
6
- "last_checked_at": 1772951385406,
7
- "index_built_at": 1772951385389
6
+ "last_checked_at": 1772952444582,
7
+ "index_built_at": 1772952444565
8
8
  }