Files

37 lines
901 B
JSON
Raw Permalink Normal View History

2022-07-19 09:36:59 +05:00
{
"name": "@notesnook/logger",
2024-09-23 15:47:09 +05:00
"version": "2.1.3",
2022-07-19 09:36:59 +05:00
"description": "A really simple logger with a pluggable interface.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
2022-07-19 09:36:59 +05:00
"scripts": {
2025-10-08 08:42:00 +05:00
"build": "tsdown src/index.ts",
"prepublishOnly": "npm run build",
"watch": "npm run build -- --watch"
2022-07-19 09:36:59 +05:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetwriters/logger.git"
},
"keywords": [
"logger"
],
"license": "GPL-3.0-or-later",
2022-07-19 09:36:59 +05:00
"bugs": {
"url": "https://github.com/streetwriters/logger/issues"
},
"homepage": "https://github.com/streetwriters/logger#readme",
"devDependencies": {}
2022-07-19 09:36:59 +05:00
}