@syncify/ansi
Version:
ANSI Colors, Symbols and TUI related terminal enchancements for Syncify.
63 lines • 1.27 kB
JSON
{
"name": "@syncify/ansi",
"version": "0.3.0",
"access": "restricted",
"description": "ANSI Colors, Symbols and TUI related terminal enchancements for Syncify.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.mts",
"dts": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"keywords": [
"ansi",
"terminal",
"cli",
"tui",
"syncify"
],
"author": {
"name": "Νικολας Σαββιδης",
"url": "https://github.com/panoply/syncify",
"email": "n.savvidis@gmx.com"
},
"license": "Apache-2.0",
"tsup": {
"entry": [
"src/index.ts"
],
"target": "node20",
"platform": "node",
"format": [
"esm",
"cjs"
],
"splitting": false,
"dts": true,
"clean": true,
"bundle": true,
"external": [
"@syncify/glue"
],
"noExternal": [
"ansis",
"log-update",
"wrap-ansi"
]
},
"devDependencies": {
"ansis": "^3.10.0",
"log-update": "^6.1.0",
"type-fest": "^4.30.0",
"wrap-ansi": "^9.0.0"
},
"dependencies": {
"@syncify/glue": "^0.0.1"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup --minify"
}
}