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 +8 -0
- package/package.json +5 -1
- package/seed/index.json +1 -1
- package/seed/version.json +2 -2
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.
|
|
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
package/seed/version.json
CHANGED