@taml/encoder
Version:
Convert ANSI escape sequences to TAML (Terminal ANSI Markup Language) tags
56 lines (55 loc) • 1.24 kB
JSON
{
"name": "@taml/encoder",
"version": "1.0.0",
"description": "Convert ANSI escape sequences to TAML (Terminal ANSI Markup Language) tags",
"keywords": [
"ansi",
"terminal",
"colors",
"converter",
"escape-sequences",
"taml",
"terminal-ansi-markup-language",
"markup"
],
"homepage": "https://github.com/suin/taml-encoder#readme",
"bugs": {
"url": "https://github.com/suin/taml-encoder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/suin/taml-encoder.git"
},
"license": "MIT",
"author": "suin",
"type": "module",
"exports": {
".": {
"types": "./js/index.d.ts",
"import": "./js/index.js",
"require": "./js/index.js"
}
},
"main": "./js/index.js",
"module": "./js/index.js",
"types": "./js/index.d.ts",
"files": [
"js/**/*",
"ts/**/*",
"!ts/**/*.test.*",
"!ts/**/*.spec.*",
"!ts/**/__tests__"
],
"scripts": {
"build": "tsc -b",
"clean": "rm -rf js *.tsbuildinfo",
"test": "bun test"
},
"devDependencies": {
"@tsconfig/bun": "latest",
"@tsconfig/node22": "latest",
"@tsconfig/strictest": "latest",
"@types/bun": "latest",
"typescript": "latest"
}
}