vibetunnel/web/package.json
Mario Zechner 9f3fcb3bb8 Simplify and clean up build system
- Consolidate complex npm scripts into minimal, clear commands
- Remove confusing bundle:*, watch:*, ensure:dirs scripts
- Add format:check script for CI compatibility
- Add @types/mime-types dev dependency to fix TypeScript errors
- Scripts are now cross-platform using Node.js instead of shell commands

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-21 16:48:47 +02:00

79 lines
2.3 KiB
JSON

{
"name": "vibetunnel-web",
"version": "1.0.0",
"description": "Web frontend for terminal multiplexer",
"main": "dist/server.js",
"scripts": {
"clean": "node scripts/clean.js",
"dev": "node scripts/dev.js",
"dev:client": "node scripts/dev.js --client-only",
"build": "node scripts/build.js",
"build:native": "node scripts/build.js --native",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,css,md}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,js,jsx,json,css,md}'",
"pre-commit": "./scripts/pre-commit-check.sh"
},
"dependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "^0.12.0",
"@xterm/headless": "^5.5.0",
"chalk": "^4.1.2",
"express": "^4.19.2",
"lit": "^3.3.0",
"mime-types": "^3.0.1",
"signal-exit": "^4.1.0",
"ws": "^8.18.2"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@testing-library/dom": "^10.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/mime-types": "^3.0.1",
"@types/node": "^24.0.3",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"chokidar": "^4.0.3",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.2",
"esbuild": "^0.25.5",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.0",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"jest": "^30.0.0",
"lint-staged": "^16.1.2",
"node-fetch": "^3.3.2",
"postcss": "^8.5.6",
"prettier": "^3.5.3",
"puppeteer": "^24.10.2",
"supertest": "^7.1.1",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"uuid": "^11.1.0",
"vitest": "^3.2.4",
"ws-mock": "^0.1.0"
},
"keywords": [
"terminal",
"multiplexer",
"websocket",
"asciinema"
],
"author": "",
"license": "MIT"
}