smartlog/package.json

92 lines
2.7 KiB
JSON
Raw Normal View History

2016-10-15 19:00:52 +02:00
{
2023-07-10 02:56:58 +02:00
"name": "@push.rocks/smartlog",
2025-05-16 15:01:57 +00:00
"version": "3.1.2",
2018-06-05 20:48:14 +02:00
"private": false,
2024-04-14 17:48:56 +02:00
"description": "A minimalistic, distributed, and extensible logging tool supporting centralized log management.",
2019-01-28 23:30:55 +01:00
"keywords": [
"logging",
2024-04-14 17:48:56 +02:00
"log management",
"typescript",
2019-01-28 23:30:55 +01:00
"centralized logging",
"json logging",
2024-04-14 17:48:56 +02:00
"node.js",
"distributed systems",
"extensible logging",
"log routing",
"console logging",
"log destinations",
"log levels",
"error tracking",
"development tools"
2019-01-28 23:30:55 +01:00
],
"exports": {
".": {
"import": "./dist_ts/index.js"
},
"./context": "./dist_ts_context/index.js",
"./interfaces": "./dist_ts_interfaces/index.js",
"./source-interactive": "./dist_ts_source_interactive/index.js",
"./destination-clickhouse": "./dist_ts_destination_clickhouse/index.js",
"./destination-devtools": "./dist_ts_destination_devtools/index.js",
"./destination-file": "./dist_ts_destination_file/index.js",
"./destination-local": "./dist_ts_destination_local/index.js",
"./destination-receiver": "./dist_ts_destination_receiver/index.js",
"./receiver": "./dist_ts_receiver/index.js"
},
2018-01-28 04:31:06 +01:00
"author": "Lossless GmbH",
2019-01-30 03:26:31 +01:00
"license": "MIT",
2016-10-15 19:00:52 +02:00
"scripts": {
"test": "(tstest test/**/*.ts --verbose)",
"build": "(tsbuild tsfolders --allowimplicitany && tsbundle npm)",
2022-06-26 10:35:35 +02:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2016-10-15 19:00:52 +02:00
},
2018-01-28 04:31:06 +01:00
"devDependencies": {
"@git.zone/tsbuild": "^2.5.1",
"@git.zone/tsbundle": "^2.2.5",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.7.0",
"@types/node": "^22.15.18"
2016-10-15 19:00:52 +02:00
},
"dependencies": {
"@api.global/typedrequest-interfaces": "^3.0.19",
"@push.rocks/consolecolor": "^2.0.2",
2023-07-12 19:21:36 +02:00
"@push.rocks/isounique": "^1.0.4",
"@push.rocks/smartclickhouse": "^2.0.17",
"@push.rocks/smartfile": "^11.2.0",
"@push.rocks/smarthash": "^3.0.4",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smarttime": "^4.1.1",
"@push.rocks/webrequest": "^3.0.37",
"@tsclass/tsclass": "^9.2.0"
2019-10-22 15:11:40 +02:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-07 13:23:56 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-22 15:11:40 +02:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-09-07 21:30:02 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-06-26 10:35:35 +02:00
],
2024-05-29 14:14:04 +02:00
"type": "module",
"homepage": "https://code.foss.global/push.rocks/smartlog#readme",
2024-05-29 14:14:04 +02:00
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartlog.git"
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartlog/issues"
},
"pnpm": {
"overrides": {}
2024-05-29 14:14:04 +02:00
}
2025-05-12 10:03:22 +00:00
}