cli-ascii-logo
Version:
Create beautiful ASCII art logos with gradient colors for your CLI applications
90 lines • 2.32 kB
JSON
{
"name": "cli-ascii-logo",
"version": "2.1.0",
"description": "Create beautiful ASCII art logos with gradient colors for your CLI applications",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"cli-ascii-logo": "dist/cli.js"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.js"
}
},
"files": [
"dist",
"index.js",
"index.d.ts",
"README.md",
"LICENSE",
"assets"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"example": "tsx example.ts",
"cli": "tsx cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"sync": "git pull --rebase && npm install && npm test",
"sync:quick": "git pull --rebase && npm install",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"ascii",
"art",
"logo",
"gradient",
"figlet",
"terminal",
"banner",
"ascii-art",
"cli-tool"
],
"author": "oharu121 <jefflin1201@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oharu121/cli-ascii-logo.git"
},
"bugs": {
"url": "https://github.com/oharu121/cli-ascii-logo/issues"
},
"homepage": "https://github.com/oharu121/cli-ascii-logo#readme",
"dependencies": {
"figlet": "^1.7.0",
"gradient-string": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.5",
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^4.0.10",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"vitest": "^4.0.10"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"engines": {
"node": ">=14.0.0"
}
}