@gamastudio/colorslog
Version:
A utility for logging colored messages to the console with different system message types.
65 lines • 1.47 kB
JSON
{
"version": "0.1.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"keywords": [
"console log",
"colors console",
"chalk",
"colors",
"logcolors"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@gamastudio/colorslog",
"author": "GamaStudio",
"module": "dist/colorslog.esm.js",
"size-limit": [
{
"path": "dist/colorslog.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/colorslog.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.4",
"husky": "^9.0.11",
"size-limit": "^11.1.4",
"tsdx": "^0.14.1",
"tslib": "^2.6.3",
"typescript": "^3.9.10"
},
"dependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6"
}
}