Files
notesnook/packages/logger/package.json
2025-10-08 08:42:00 +05:00

37 lines
901 B
JSON

{
"name": "@notesnook/logger",
"version": "2.1.3",
"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"
}
},
"scripts": {
"build": "tsdown src/index.ts",
"prepublishOnly": "npm run build",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetwriters/logger.git"
},
"keywords": [
"logger"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/streetwriters/logger/issues"
},
"homepage": "https://github.com/streetwriters/logger#readme",
"devDependencies": {}
}