mirror of
https://github.com/voson-wang/toon.git
synced 2026-01-29 15:24:10 +08:00
chore: upgrade tsdown
This commit is contained in:
@@ -8,19 +8,19 @@
|
|||||||
"fetch:github-repos": "tsx scripts/fetch-github-repos.ts"
|
"fetch:github-repos": "tsx scripts/fetch-github-repos.ts"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ai-sdk/anthropic": "^2.0.40",
|
"@ai-sdk/anthropic": "^2.0.44",
|
||||||
"@ai-sdk/google": "^2.0.26",
|
"@ai-sdk/google": "^2.0.31",
|
||||||
"@ai-sdk/openai": "^2.0.59",
|
"@ai-sdk/openai": "^2.0.65",
|
||||||
"@ai-sdk/provider": "^2.0.0",
|
"@ai-sdk/provider": "^2.0.0",
|
||||||
"@ai-sdk/xai": "^2.0.30",
|
"@ai-sdk/xai": "^2.0.32",
|
||||||
"@clack/prompts": "^0.11.0",
|
"@clack/prompts": "^0.11.0",
|
||||||
"@faker-js/faker": "^10.1.0",
|
"@faker-js/faker": "^10.1.0",
|
||||||
"ai": "^5.0.86",
|
"ai": "^5.0.92",
|
||||||
"csv-stringify": "^6.6.0",
|
"csv-stringify": "^6.6.0",
|
||||||
"fast-xml-parser": "^5.3.0",
|
"fast-xml-parser": "^5.3.1",
|
||||||
"gpt-tokenizer": "^3.2.0",
|
"gpt-tokenizer": "^3.4.0",
|
||||||
"ofetch": "^1.5.1",
|
"ofetch": "^1.5.1",
|
||||||
"p-map": "^7.0.3",
|
"p-map": "^7.0.4",
|
||||||
"p-queue": "^9.0.0",
|
"p-queue": "^9.0.0",
|
||||||
"unstorage": "^1.17.2",
|
"unstorage": "^1.17.2",
|
||||||
"yaml": "^2.8.1"
|
"yaml": "^2.8.1"
|
||||||
|
|||||||
10
package.json
10
package.json
@@ -3,7 +3,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@10.20.0",
|
"packageManager": "pnpm@10.21.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm -r --filter=./packages/** run build",
|
"build": "pnpm -r --filter=./packages/** run build",
|
||||||
"automd": "automd",
|
"automd": "automd",
|
||||||
@@ -15,13 +15,13 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@antfu/eslint-config": "^6.2.0",
|
"@antfu/eslint-config": "^6.2.0",
|
||||||
"@types/node": "^24.9.2",
|
"@types/node": "^24.10.0",
|
||||||
"automd": "^0.4.2",
|
"automd": "^0.4.2",
|
||||||
"bumpp": "^10.3.1",
|
"bumpp": "^10.3.1",
|
||||||
"eslint": "^9.39.0",
|
"eslint": "^9.39.1",
|
||||||
"tsdown": "^0.15.12",
|
"tsdown": "^0.16.2",
|
||||||
"tsx": "^4.20.6",
|
"tsx": "^4.20.6",
|
||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"vitest": "^4.0.6"
|
"vitest": "^4.0.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
'use strict'
|
'use strict'
|
||||||
import('../dist/index.js')
|
import('../dist/index.mjs')
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "@toon-format/cli",
|
"name": "@toon-format/cli",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"packageManager": "pnpm@10.20.0",
|
"packageManager": "pnpm@10.21.0",
|
||||||
"description": "CLI for JSON ↔ TOON conversion using @toon-format/toon",
|
"description": "CLI for JSON ↔ TOON conversion using @toon-format/toon",
|
||||||
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -17,11 +17,11 @@
|
|||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.mts",
|
||||||
"default": "./dist/index.js"
|
"default": "./dist/index.mjs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.mts",
|
||||||
"bin": {
|
"bin": {
|
||||||
"toon": "bin/toon.mjs"
|
"toon": "bin/toon.mjs"
|
||||||
},
|
},
|
||||||
@@ -37,6 +37,6 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"citty": "^0.1.6",
|
"citty": "^0.1.6",
|
||||||
"consola": "^3.4.2",
|
"consola": "^3.4.2",
|
||||||
"tokenx": "^1.2.0"
|
"tokenx": "^1.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "@toon-format/toon",
|
"name": "@toon-format/toon",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"packageManager": "pnpm@10.20.0",
|
"packageManager": "pnpm@10.21.0",
|
||||||
"description": "Token-Oriented Object Notation (TOON) – A compact, deterministic JSON format for LLM prompts",
|
"description": "Token-Oriented Object Notation (TOON) – A compact, deterministic JSON format for LLM prompts",
|
||||||
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -25,11 +25,11 @@
|
|||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.mts",
|
||||||
"default": "./dist/index.js"
|
"default": "./dist/index.mjs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.mts",
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
|
|||||||
1166
pnpm-lock.yaml
generated
1166
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user