/
foult080
/
terminal-db
Обзор
Документация
Войти
/
foult080
/
terminal-db
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
package.json
68 строк
2 KB
foult080
production hardening: fix P0 bugs, remove dead code, add workspace tests
16 июл 2026, 07:34
16 июл 2026, 07:34
39c68ad
Код
Авторство
О чём код?
{ "name": "terminal-db", "version": "0.1.0", "description": "PostgreSQL Terminal Workspace — terminal UI for database management", "type": "module", "bin": { "tdb": "./dist/tdb" }, "scripts": { "build": "bun build --compile src/index.ts --outfile dist/tdb", "build:js": "bun build src/ --outdir dist --target bun", "dev": "bun --watch --conditions=browser src/index.ts", "start": "bun src/index.ts", "test": "bunx vitest run", "test:tui": "bun test tests/e2e/tui-bun/", "test:watch": "bunx vitest", "typecheck": "tsc --noEmit", "lint": "oxlint src/ tests/", "lint:fix": "oxlint --fix src/ tests/", "format": "oxlint --fix src/ tests/" }, "dependencies": { "@opentui/core": "^0.4.3", "@opentui/react": "^0.4.3", "csv-parse": "^7.0.1", "csv-stringify": "^6.8.1", "mongodb": "^7.5.0", "pg": "^8.14.1", "react": "^19.2.7", "react-devtools-core": "^7.0.1", "web-tree-sitter": "^0.26.11", "ws": "^8.21.1", "zod": "^3.24.4" }, "devDependencies": { "@types/bun": "^1.3.0", "@types/node": "^22.15.3", "@types/pg": "^8.11.12", "@types/react": "^19.2.17", "oxlint": "^0.15.0", "typescript": "^5.8.3", "vitest": "^3.1.1" }, "engines": { "bun": ">=1.3.0" }, "author": { "name": "foult080", "email": "foult080@gmail.com" }, "license": "MIT", "keywords": [ "postgresql", "database", "terminal", "tui", "sql-editor", "cli" ], "repository": { "type": "git", "url": "git+https://gitverse.ru/foult080/terminal-db-workspace.git" }, "homepage": "https://gitverse.ru/foult080/terminal-db-workspace", "bugs": { "url": "https://gitverse.ru/foult080/terminal-db-workspace/issues" } }