jet-logger
Version:
A super quick, easy to setup logging tool for NodeJS/TypeScript.
81 lines (80 loc) • 2.13 kB
JSON
{
"name": "jet-logger",
"version": "2.2.2",
"description": "A super quick, easy to setup logging tool for NodeJS/TypeScript.",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json",
"clean-install": "rm -rf ./node_modules && rm -r package-lock.json && npm i",
"lint": "eslint .",
"format": "eslint --fix .",
"playground": "tsx ./test/playground.ts",
"pre-publish": "mv README.md README-git && mv README-npm README.md",
"post-publish": "mv README.md README-npm && mv README-git README.md",
"test": "NODE_ENV=test vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanpmaxwell/jet-logger.git"
},
"keywords": [
"logger",
"logging",
"log",
"console",
"node",
"nodejs",
"node.js",
"typescript",
"ts",
"typescript-logger",
"typescript-logging",
"node-logger",
"node-logging",
"jet",
"jet-logger",
"jetlogger",
"simple",
"easy",
"quick"
],
"author": "sean maxwell",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanpmaxwell/jet-logger/issues"
},
"homepage": "https://github.com/seanpmaxwell/jet-logger#readme",
"dependencies": {
"colors": "1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stylistic/eslint-plugin": "^5.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.1",
"@types/node": "^22.8.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-prettier": "^5.5.4",
"jiti": "^2.3.3",
"prettier": "^3.7.4",
"typescript": "~5.9.3",
"tsx": "^4.19.1",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.15"
}
}