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
11 changes: 0 additions & 11 deletions .changeset/cli-prepack-chmod.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.1",
"@tokenometer/core": "0.1.2",
"minimatch": "^10.2.5"
},
"devDependencies": {
Expand Down
13 changes: 13 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# tokenometer

## 0.1.2

### Patch Changes

- [#25](https://github.com/faraa2m/tokenometer/pull/25) [`377ebff`](https://github.com/faraa2m/tokenometer/commit/377ebff84fe22147c5b786b336a9852aaebde666) Thanks [@faraa2m](https://github.com/faraa2m)! - Fix CLI bin missing execute bit when published from CI. Root `npm run
build` runs `tsc -b` without recursing into workspace scripts, so the
chmod added in the CLI's build script never ran in CI. Added a `prepack`
hook in `packages/cli/package.json` that chmods `dist/index.js` right
before `npm publish` packs the tarball — runs regardless of how the
build was invoked.
- Updated dependencies [[`377ebff`](https://github.com/faraa2m/tokenometer/commit/377ebff84fe22147c5b786b336a9852aaebde666)]:
- @tokenometer/core@0.1.2

## 0.1.1

### Patch 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.1",
"version": "0.1.2",
"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 @@ -80,7 +80,7 @@
"clean": "rm -rf dist"
},
"dependencies": {
"@tokenometer/core": "0.1.1",
"@tokenometer/core": "0.1.2",
"image-size": "^2.0.2"
},
"devDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @tokenometer/core

## 0.1.2

### Patch Changes

- [#25](https://github.com/faraa2m/tokenometer/pull/25) [`377ebff`](https://github.com/faraa2m/tokenometer/commit/377ebff84fe22147c5b786b336a9852aaebde666) Thanks [@faraa2m](https://github.com/faraa2m)! - Fix CLI bin missing execute bit when published from CI. Root `npm run
build` runs `tsc -b` without recursing into workspace scripts, so the
chmod added in the CLI's build script never ran in CI. Added a `prepack`
hook in `packages/cli/package.json` that chmods `dist/index.js` right
before `npm publish` packs the tarball — runs regardless of how the
build was invoked.

## 0.1.1

### Patch 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.1",
"version": "0.1.2",
"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.2

### Patch Changes

- Updated dependencies [[`377ebff`](https://github.com/faraa2m/tokenometer/commit/377ebff84fe22147c5b786b336a9852aaebde666)]:
- @tokenometer/core@0.1.2

## 0.1.1

### 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.1",
"version": "0.1.2",
"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.1"
"@tokenometer/core": "0.1.2"
},
"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.1",
"@tokenometer/core": "0.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.15.0"
Expand Down
Loading