Files
logger/package.json
T
semantic-release-bot 19de8db119 chore(release): 1.0.0 [skip ci]
# [1.0.0](https://git.mifi.dev/mifi/logger/compare/v0.10.0...v1.0.0) (2026-08-07)

### Features

* API options object support to control sentry handling; removal of `logger.sentry.` ([234226e](234226e2bb))
* API options object support to control sentry handling; removal of `logger.sentry.` ([6bee3a8](6bee3a801d))

### BREAKING CHANGES

* API options object support to control sentry handling; removal of `logger.sentry.`
* API options object support to control sentry handling; removal of `logger.sentry.`
2026-08-07 15:22:51 +00:00

58 lines
1.6 KiB
JSON

{
"name": "@mifi/logger",
"version": "1.0.0",
"description": "Intentional, namespaced logging for browser and Node.js TypeScript applications.",
"repository": {
"type": "git",
"url": "https://git.mifi.dev/mifi/logger.git"
},
"type": "module",
"sideEffects": false,
"packageManager": "pnpm@11.0.0",
"engines": {
"node": ">=24.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./sentry": {
"types": "./dist/sentry.d.ts",
"import": "./dist/sentry.js",
"require": "./dist/sentry.cjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://git.mifi.dev/api/packages/mifi/npm/"
},
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "oxlint src test",
"test": "vitest run",
"test:watch": "vitest",
"pack:check": "pnpm pack --pack-destination .artifacts",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^3.0.0",
"oxlint": "^1.0.0",
"prettier": "^3.5.0",
"semantic-release": "^25.0.8",
"tsup": "^8.4.0",
"typescript": "^6.0.0",
"vitest": "^3.0.0"
}
}