file-error-logging
Version:
Log your errors directly to the console and to a .log file
45 lines (44 loc) • 1.18 kB
JSON
{
"name": "file-error-logging",
"version": "1.3.3",
"description": "Log your errors directly to the console and to a .log file",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npm run test",
"dev": "tsc -w",
"start": "node dist/index.js",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Asterki/file-error-logging.git"
},
"keywords": [
"log",
"typescript",
"log-to-file"
],
"author": "Asterki",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Asterki/file-error-logging/issues"
},
"homepage": "https://asterki.github.io/file-error-logging",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.9.1",
"grunt": "^1.6.1",
"grunt-contrib-uglify": "^5.2.2",
"grunt-ts": "^6.0.0-beta.22",
"typescript": "^5.6.3"
},
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^11.2.0"
}
}