UNPKG

termshow

Version:

A powerful CLI tool for creating terminal-based presentations with live coding support, featuring auto-execution, process management, and beautiful terminal UI.

79 lines (78 loc) 1.95 kB
{ "name": "termshow", "version": "1.0.0", "description": "A powerful CLI tool for creating terminal-based presentations with live coding support, featuring auto-execution, process management, and beautiful terminal UI.", "main": "dist/cli.js", "type": "module", "bin": { "termshow": "bin/termshow.js" }, "files": [ "dist", "bin", "README.md", "LICENSE" ], "scripts": { "clean": "rm -rf dist", "build": "npm run clean && tsc", "start": "ts-node src/cli.ts", "dev": "ts-node src/cli.ts", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "lint": "eslint . --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "prepare": "npm run build", "prepublishOnly": "npm run build", "publish-package": "npm publish --access public" }, "dependencies": { "@types/figlet": "^1.7.0", "chalk": "^4.1.2", "execa": "^6.1.0", "figlet": "^1.8.0", "highlight.js": "^11.11.1", "ink": "^3.0.0", "marked": "^4.3.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/marked": "^5.0.2", "@types/node": "^22.13.13", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.3.1", "ts-node": "^10.9.2", "typescript": "^4.9.5" }, "keywords": [ "presentation", "cli", "terminal", "markdown", "live-coding", "demo", "slideshow", "interactive", "education", "teaching" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/0xElAnas/termshow.git" }, "bugs": { "url": "https://github.com/0xElAnas/termshow/issues" }, "homepage": "https://github.com/0xElAnas/termshow#readme", "engines": { "node": ">=20.0.0" }, "publishConfig": { "access": "public" } }