@isdk/artistic-text
Version:
Generates artistic text with custom fonts and color.
71 lines • 2.15 kB
JSON
{
"name": "@isdk/artistic-text",
"description": "Generates artistic text with custom fonts and color.",
"version": "0.1.1",
"author": "Riceball LEE <snowyu.lee@gmail.com>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"homepage": "https://github.com/isdk/artistic-text.js",
"repository": {
"type": "git",
"url": "git://github.com/isdk/artistic-text.js.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"dependencies": {
"ansi-colors": "^4.1.3",
"figlet": "^1.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/figlet": "^1.7.0",
"@types/picomatch": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"eslint": "9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-tsdoc": "^0.4.0",
"prettier": "^3.4.2",
"terser": "^5.37.0",
"tsup": "^8.3.5",
"type-fest": "^4.32.0",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.0",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^3.0.2"
},
"files": [
"docs",
"dist",
"plugins"
],
"keywords": [
"text",
"artistic"
],
"maintainers": [
"Riceball LEE <snowyu.lee@gmail.com>"
],
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup",
"build": "pnpm run build-fast --dts-resolve --dts && pnpm run doc:md",
"clean": "rm -fr web docs dist",
"doc": "typedoc --plugin none --out web",
"doc:md": "typedoc --plugin typedoc-plugin-markdown --out docs",
"style": "pnpm run format -c && pnpm run lint",
"style:fix": "pnpm run format:fix && npm run lint:fix",
"format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"",
"format:fix": "pnpm run format --write",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"test": "vitest run",
"release": "pnpm run clean && pnpm run build && git add -f docs && git ci -m 'docs: update API docs' && pnpm dlx commit-and-tag-version -s",
"release.alpha": "pnpm run release -- --prerelease alpha"
}
}