UNPKG

astro-terminal-themes

Version:

Astro integration to convert terminal themes (Ghostty, Warp, etc.) to Tailwind CSS themes

73 lines 1.88 kB
{ "name": "astro-terminal-themes", "version": "0.1.1", "description": "Astro integration to convert terminal themes (Ghostty, Warp, etc.) to Tailwind CSS themes", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rm -rf dist coverage", "prepublishOnly": "npm run clean && npm run build && npm run test", "release:patch": "npm version patch && npm publish", "release:minor": "npm version minor && npm publish", "release:major": "npm version major && npm publish" }, "keywords": [ "astro", "astro-integration", "terminal", "themes", "ghostty", "warp", "tailwind", "css", "colors", "theming" ], "author": "Dan Lourenco <danlourenco@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/danlourenco/astro-terminal-themes.git" }, "bugs": { "url": "https://github.com/danlourenco/astro-terminal-themes/issues" }, "homepage": "https://github.com/danlourenco/astro-terminal-themes#readme", "peerDependencies": { "astro": "^5.0.0" }, "dependencies": { "chokidar": "^4.0.3" }, "devDependencies": { "@types/node": "^22.15.29", "@typescript-eslint/eslint-plugin": "^8.33.1", "@typescript-eslint/parser": "^8.33.1", "@vitest/coverage-v8": "^3.2.0", "eslint": "^9.28.0", "typescript": "^5.8.3", "vitest": "^3.2.0" }, "engines": { "node": ">=22.0.0" } }