omni-token-economy/package.json
dependabot[bot] dc6d63a19e
build(deps): bump vite and vitest
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) to 8.0.10 and updates ancestor dependency [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). These dependencies need to be updated together.


Updates `vite` from 5.4.21 to 8.0.10
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.10/packages/vite)

Updates `vitest` from 2.1.9 to 4.1.5
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/vitest)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 8.0.10
  dependency-type: indirect
- dependency-name: vitest
  dependency-version: 4.1.5
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-24 13:41:24 +00:00

49 lines
1.1 KiB
JSON

{
"name": "@omniforge/omni-token-economy",
"version": "0.1.0",
"description": "Biblioteca universal de compactação de tokens para aplicações LLM. Zero lock-in de backend.",
"keywords": [
"llm",
"tokens",
"compact",
"claude",
"openai",
"compression",
"context",
"mcp"
],
"license": "MIT",
"author": "OmniForge <jesse.freitas@omniforge.com.br>",
"homepage": "https://github.com/jessefreitas/omni-token-economy",
"repository": {
"type": "git",
"url": "git+https://github.com/jessefreitas/omni-token-economy.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"bench": "tsx benchmarks/run.ts",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.5"
}
}