@logsnag/next
Version:
LogSnag client for Next applications
79 lines • 1.91 kB
JSON
{
"name": "@logsnag/next",
"version": "1.0.3",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": false,
"description": "LogSnag client for Next applications",
"author": "Shayan <shayan@logsnag.com>",
"license": "MIT",
"bugs": {
"url": "https://logsnag.com"
},
"homepage": "https://logsnag.com",
"keywords": [
"logsnag",
"next",
"logging",
"analytics",
"insights"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./server": {
"import": "./dist/server/index.js",
"require": "./dist/server/index.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"server": [
"dist/server/index.d.ts"
]
}
},
"files": [
"dist"
],
"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"
},
"dependencies": {
},
"peerDependencies": {
"next": "^11.1.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@logsnag/constants": "*",
"@logsnag/hooks": "*",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"next": "^13.5.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"typescript": "^5.2.2",
"tsup": "^7.2.0"
}
}