Files
vue-tui/packages/runtime/package.json
T
Yunfei He de706817d0 chore(release): @vue-tui/runtime + @vue-tui/vite + @vue-tui/components 0.1.1 (#230)
- @vue-tui/runtime 0.1.0 -> 0.1.1 (ships #215's runtime changes).
- @vue-tui/vite 0.0.0 -> 0.1.1 — first publish (the #215 plugin replacing @vue-tui/cli).
- @vue-tui/components 0.0.0 -> 0.1.1 — first publish (#229; Spinner).

First-publish readiness (runtime already had everything):
- @vue-tui/vite: add LICENSE + README, list LICENSE in files.
- @vue-tui/components: was `private: true` (wouldn't publish at all) — remove it and
  add publishConfig.access=public; add prepublishOnly (was MISSING — publish would
  not have auto-built dist); add LICENSE + README; change the @vue-tui/runtime peer
  from workspace:* (would publish as an exact `0.1.1` peer) to workspace:^ (^0.1.1).

Publish flow verified for all three via `pnpm publish --dry-run` + `pnpm pack`:
prepublishOnly auto-builds dist; the tarball ships LICENSE + README + dist
(components also ships types: dist/index.d.mts); catalog:/workspace: are fully
resolved (no literal strings; vite & components peer @vue-tui/runtime -> ^0.1.1).

Publish with `pnpm publish` (NOT npm — npm ships literal catalog:). Order: runtime
first, then vite + components (their peer points at ^0.1.1).

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 17:06:04 +08:00

84 lines
1.9 KiB
JSON

{
"name": "@vue-tui/runtime",
"version": "0.1.1",
"description": "Vue 3 terminal renderer with Yoga flexbox layout, inspired by React Ink.",
"keywords": [
"ansi",
"cli",
"console",
"flexbox",
"ink",
"renderer",
"terminal",
"tui",
"vue",
"yoga"
],
"homepage": "https://github.com/vuejs-ai/vue-tui/tree/main/packages/runtime#readme",
"bugs": {
"url": "https://github.com/vuejs-ai/vue-tui/issues"
},
"license": "MIT",
"author": "Yunfei He <i.heyunfei@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs-ai/vue-tui.git",
"directory": "packages/runtime"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./internal": "./dist/internal.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check:type": "vue-tsc --noEmit",
"prepublishOnly": "vp run build"
},
"dependencies": {
"@alcalzone/ansi-tokenize": "catalog:",
"@vue/runtime-core": "^3.4.0",
"ansi-escapes": "catalog:",
"chalk": "^5.3.0",
"cli-boxes": "^3.0.0",
"cli-truncate": "^6.0.0",
"code-excerpt": "^4.0.0",
"is-in-ci": "catalog:",
"patch-console": "catalog:",
"signal-exit": "^4.1.0",
"slice-ansi": "^9.0.0",
"stack-utils": "^2.0.6",
"string-width": "^8.0.0",
"terminal-size": "catalog:",
"wrap-ansi": "^10.0.0",
"yoga-layout": "^3.1.0"
},
"devDependencies": {
"@types/node": "^25.6.2",
"@types/stack-utils": "^2.0.3",
"@vitejs/plugin-vue-jsx": "catalog:",
"typescript": "^6.0.3",
"unplugin-vue": "catalog:",
"vite-plus": "^0.1.20",
"vue": "^3.4.0",
"vue-tsc": "catalog:"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"engines": {
"node": ">=22.18.0"
}
}