Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/cli-bin-executable.md

This file was deleted.

2 changes: 1 addition & 1 deletion packages/action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@tokenometer/core": "0.1.0",
"@tokenometer/core": "0.1.1",
"minimatch": "^10.2.5"
},
"devDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# tokenometer

## 0.1.1

### Patch Changes

- [#23](https://github.com/faraa2m/tokenometer/pull/23) [`776191c`](https://github.com/faraa2m/tokenometer/commit/776191c9f5b24c5978e26a8fe37af6678894297f) Thanks [@faraa2m](https://github.com/faraa2m)! - Fix `tokenometer` CLI not invokable via `npx` on Linux. The published
`dist/index.js` had no execute bit, so `npx --yes tokenometer@<v>` on
Linux runners failed with `sh: 1: tokenometer: not found`. Build script
now chmods +x after tsc emit.
- Updated dependencies [[`776191c`](https://github.com/faraa2m/tokenometer/commit/776191c9f5b24c5978e26a8fe37af6678894297f)]:
- @tokenometer/core@0.1.1

## 0.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tokenometer",
"version": "0.1.0",
"version": "0.1.1",
"description": "Tokenometer CLI — LLM token cost + latency benchmarking across Claude, GPT-4o, Gemini, Mistral, and Cohere. Multi-format, empirical mode, vision tokens, SARIF output.",
"license": "MIT",
"author": "Faraazuddin Mohammed <mohdfaraaz1@gmail.com>",
Expand Down Expand Up @@ -79,7 +79,7 @@
"clean": "rm -rf dist"
},
"dependencies": {
"@tokenometer/core": "0.1.0",
"@tokenometer/core": "0.1.1",
"image-size": "^2.0.2"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @tokenometer/core

## 0.1.1

### Patch Changes

- [#23](https://github.com/faraa2m/tokenometer/pull/23) [`776191c`](https://github.com/faraa2m/tokenometer/commit/776191c9f5b24c5978e26a8fe37af6678894297f) Thanks [@faraa2m](https://github.com/faraa2m)! - Fix `tokenometer` CLI not invokable via `npx` on Linux. The published
`dist/index.js` had no execute bit, so `npx --yes tokenometer@<v>` on
Linux runners failed with `sh: 1: tokenometer: not found`. Build script
now chmods +x after tsc emit.

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenometer/core",
"version": "0.1.0",
"version": "0.1.1",
"description": "Tokenometer core library — multi-provider LLM token cost, latency, and vision-token estimation with empirical countTokens fallback (Anthropic, OpenAI, Google, Mistral, Cohere).",
"license": "MIT",
"author": "Faraazuddin Mohammed <mohdfaraaz1@gmail.com>",
Expand Down
7 changes: 7 additions & 0 deletions packages/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.1.1

### Patch Changes

- Updated dependencies [[`776191c`](https://github.com/faraa2m/tokenometer/commit/776191c9f5b24c5978e26a8fe37af6678894297f)]:
- @tokenometer/core@0.1.1

## 0.0.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tokenometer-vscode",
"version": "0.1.0",
"version": "0.1.1",
"displayName": "Tokenometer",
"description": "Tokenometer for VS Code / Cursor — live token count and USD cost in the status bar for LLM prompts (Claude, GPT-4o, Gemini, Mistral, Cohere).",
"publisher": "faraa2m",
Expand Down Expand Up @@ -105,7 +105,7 @@
"package:vsix": "npm run build && vsce package --no-dependencies"
},
"dependencies": {
"@tokenometer/core": "0.1.0"
"@tokenometer/core": "0.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@anthropic-ai/sdk": "^0.40.0",
"@google/generative-ai": "^0.21.0",
"@tokenometer/core": "0.1.0",
"@tokenometer/core": "0.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.15.0"
Expand Down
Loading