UNPKG

ghosttime

Version:

Ghostty animation for any terminal with customizable colors

97 lines (96 loc) 2.39 kB
{ "name": "ghosttime", "version": "1.3.0", "description": "Ghostty animation for any terminal with customizable colors", "module": "src/cli.ts", "type": "module", "bin": { "ghosttime": "./dist/cli.js" }, "files": [ "dist" ], "scripts": { "prepare": "bun run build", "lint": "biome check --fix", "release": "release-it", "build": "bun build ./src/cli.ts --outdir=dist --target=node --minify", "start": "bun dist/cli.js", "dev": "bun run ./src/cli.ts" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@release-it/conventional-changelog": "^10.0.0", "@types/bun": "latest", "release-it": "^18.1.2", "typescript": "^5.8.2" }, "keywords": [ "ghostty", "ghosttime", "animation", "terminal", "cli" ], "license": "MIT", "repository": "https://github.com/SohelIslamImran/ghosttime", "bugs": { "url": "https://github.com/SohelIslamImran/ghosttime/issues" }, "homepage": "https://github.com/SohelIslamImran/ghosttime#readme", "author": "SohelIslamImran <sohelislamimran@gmail.com> (https://github.com/SohelIslamImran)", "release-it": { "git": { "commitMessage": "chore: release v${version}", "tagName": "v${version}", "push": true }, "npm": { "publish": true }, "plugins": { "@release-it/conventional-changelog": { "infile": "CHANGELOG.md", "preset": { "name": "conventionalcommits", "types": [ { "type": "feat", "section": "✨ Features" }, { "type": "fix", "section": "🐛 Bug Fixes" }, { "type": "docs", "section": "📚 Documentation" }, { "type": "style", "section": "🎨 Styles" }, { "type": "refactor", "section": "🔨 Code Refactoring" }, { "type": "perf", "section": "💨 Performance Improvements" }, { "type": "chore", "section": "🛠️ Changes in Build Process & Tools" } ] } } }, "hooks": { "before:init": [ "bun lint", "bun run build" ] } } }