mirror of
https://github.com/voson-wang/toon.git
synced 2026-01-29 15:24:10 +08:00
chore: upgrade dependencies
This commit is contained in:
@@ -8,21 +8,21 @@
|
||||
"fetch:github-repos": "tsx scripts/fetch-github-repos.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ai-sdk/anthropic": "^2.0.45",
|
||||
"@ai-sdk/google": "^2.0.42",
|
||||
"@ai-sdk/openai": "^2.0.71",
|
||||
"@ai-sdk/anthropic": "^2.0.56",
|
||||
"@ai-sdk/google": "^2.0.46",
|
||||
"@ai-sdk/openai": "^2.0.86",
|
||||
"@ai-sdk/provider": "^2.0.0",
|
||||
"@ai-sdk/xai": "^2.0.35",
|
||||
"@ai-sdk/xai": "^2.0.40",
|
||||
"@clack/prompts": "^0.11.0",
|
||||
"@faker-js/faker": "^10.1.0",
|
||||
"ai": "^5.0.101",
|
||||
"ai": "^5.0.113",
|
||||
"csv-stringify": "^6.6.0",
|
||||
"fast-xml-parser": "^5.3.2",
|
||||
"fast-xml-parser": "^5.3.3",
|
||||
"gpt-tokenizer": "^3.4.0",
|
||||
"ofetch": "^1.5.1",
|
||||
"p-map": "^7.0.4",
|
||||
"p-queue": "^9.0.1",
|
||||
"unstorage": "^1.17.3",
|
||||
"yaml": "^2.8.1"
|
||||
"yaml": "^2.8.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,7 +92,7 @@ export default defineConfig({
|
||||
|
||||
footer: {
|
||||
message: 'Released under the <a href="https://opensource.org/licenses/MIT" target="_blank">MIT License</a>.',
|
||||
copyright: 'Copyright © 2025-PRESENT <a href="https://github.com/johannschopplich" target="_blank">Johann Schopplich</a>',
|
||||
copyright: 'Copyright © 2025-PRESENT <a href="https://johannschopplich.com" target="_blank">Johann Schopplich</a>',
|
||||
},
|
||||
|
||||
search: {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
"gpt-tokenizer": "^3.4.0",
|
||||
"markdown-it-mathjax3": "^4.3.2",
|
||||
"uint8array-extras": "^1.5.0",
|
||||
"unocss": "^66.5.9",
|
||||
"unocss": "^66.5.10",
|
||||
"vitepress": "^1.6.4",
|
||||
"vitepress-plugin-llms": "^1.9.3"
|
||||
}
|
||||
|
||||
@@ -2,12 +2,10 @@
|
||||
import antfu from '@antfu/eslint-config'
|
||||
|
||||
export default antfu({
|
||||
pnpm: false,
|
||||
rules: {
|
||||
'no-cond-assign': 'off',
|
||||
},
|
||||
// `README.md` is symlinked to this file so we
|
||||
// exclude it to avoid linting the same file twice.
|
||||
ignores: ['packages/toon/README.md'],
|
||||
}).append({
|
||||
files: ['README.md', 'SPEC.md', '**/docs/**/*'],
|
||||
rules: {
|
||||
|
||||
18
package.json
18
package.json
@@ -3,7 +3,7 @@
|
||||
"type": "module",
|
||||
"version": "2.1.0",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@10.23.0",
|
||||
"packageManager": "pnpm@10.26.0",
|
||||
"scripts": {
|
||||
"build": "pnpm -r --filter=./packages/** run build",
|
||||
"automd": "automd",
|
||||
@@ -17,15 +17,15 @@
|
||||
"release": "bumpp -r"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^6.2.0",
|
||||
"@commitlint/types": "^20.0.0",
|
||||
"@types/node": "^24.10.1",
|
||||
"@antfu/eslint-config": "^6.7.1",
|
||||
"@commitlint/types": "^20.2.0",
|
||||
"@types/node": "^24.10.4",
|
||||
"automd": "^0.4.2",
|
||||
"bumpp": "^10.3.1",
|
||||
"eslint": "^9.39.1",
|
||||
"tsdown": "^0.16.6",
|
||||
"tsx": "^4.20.6",
|
||||
"bumpp": "^10.3.2",
|
||||
"eslint": "^9.39.2",
|
||||
"tsdown": "^0.18.0",
|
||||
"tsx": "^4.21.0",
|
||||
"typescript": "^5.9.3",
|
||||
"vitest": "^4.0.13"
|
||||
"vitest": "^4.0.15"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "@toon-format/cli",
|
||||
"type": "module",
|
||||
"version": "2.1.0",
|
||||
"packageManager": "pnpm@10.23.0",
|
||||
"packageManager": "pnpm@10.26.0",
|
||||
"description": "CLI for JSON ↔ TOON conversion using @toon-format/toon",
|
||||
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
||||
"license": "MIT",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "@toon-format/toon",
|
||||
"type": "module",
|
||||
"version": "2.1.0",
|
||||
"packageManager": "pnpm@10.23.0",
|
||||
"packageManager": "pnpm@10.26.0",
|
||||
"description": "Token-Oriented Object Notation (TOON) – Compact, human-readable, schema-aware encoding of JSON for LLM prompts",
|
||||
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
||||
"license": "MIT",
|
||||
|
||||
2346
pnpm-lock.yaml
generated
2346
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user