mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-15 19:27:51 +01:00
37 lines
901 B
JSON
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": {}
|
|
}
|