UNPKG

@logsnag/node

Version:

LogSnag client for Node.js applications

54 lines (53 loc) 1.19 kB
{ "name": "@logsnag/node", "version": "1.0.1", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "type": "module", "private": false, "description": "LogSnag client for Node.js applications", "author": "Shayan <shayan@logsnag.com>", "license": "MIT", "bugs": { "url": "https://logsnag.com" }, "homepage": "https://logsnag.com", "keywords": [ "logsnag", "node", "logging", "analytics", "insights" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "exports": { ".": { "import": { "node": "./dist/index.js", "default": "./dist/index.js" }, "require": { "node": "./dist/index.cjs", "default": "./dist/index.cjs" } } }, "scripts": { "build": "tsup", "dev": "tsup --watch --clean=false", "publish:prod": "npm run build && npm publish", "publish:beta": "npm run build && npm publish --tag beta", "publish:dryrun": "npm run build && npm publish --dry-run" }, "files": [ "dist" ], "devDependencies": { "typescript": "^5.2.2", "tsup": "^7.2.0" } }