mirror of
https://github.com/jessefreitas/omni-token-economy.git
synced 2026-04-26 04:13:49 +00:00
Bumps [esbuild](https://github.com/evanw/esbuild) to 0.27.7 and updates ancestor dependency [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). These dependencies need to be updated together. Updates `esbuild` from 0.21.5 to 0.27.7 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.21.5...v0.27.7) 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: esbuild dependency-version: 0.27.7 dependency-type: indirect - dependency-name: vitest dependency-version: 4.1.5 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
49 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|