Replace tsc with tsgo in all build scripts — 5.6x faster emit. tsgo has full emit parity for this codebase (NodeNext, ES2022, strict). - build:core: tsc → tsgo (root tsconfig.json) - copy-resources.cjs: typescript/bin/tsc → @typescript/native-preview/bin/tsgo.js - All workspace packages (agent-core, ai, coding-agent, daemon, google-gemini-cli-provider, native, rpc-client, tui): tsc → tsgo Benchmarks (root project): tsc --project tsconfig.json: 7.7s tsgo --project tsconfig.json: 1.4s (5.6x faster) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
33 lines
670 B
JSON
33 lines
670 B
JSON
{
|
|
"name": "@singularity-forge/tui",
|
|
"version": "2.75.3",
|
|
"description": "Terminal User Interface library (vendored from pi-mono)",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsgo -p tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.6.2",
|
|
"get-east-asian-width": "^1.3.0",
|
|
"marked": "^18.0.3",
|
|
"mime-types": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mime-types": "^2.1.4"
|
|
},
|
|
"optionalDependencies": {
|
|
"koffi": "^2.9.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=26.1.0"
|
|
}
|
|
}
|