@posthog/nextjs-config
Version:
NextJS configuration helper for Posthog 🦔
65 lines • 1.46 kB
JSON
{
"name": "@posthog/nextjs-config",
"version": "1.1.2",
"description": "NextJS configuration helper for Posthog 🦔",
"repository": {
"type": "git",
"url": "https://github.com/PostHog/posthog-js.git",
"directory": "packages/nextjs-config"
},
"author": {
"name": "PostHog",
"email": "hey@posthog.com",
"url": "https://posthog.com"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"dependencies": {
"@posthog/cli": "^0.3.6"
},
"keywords": [
"posthog",
"nextjs"
],
"devDependencies": {
"@rslib/core": "^0.10.5",
"@types/node": "^22.15.23",
"next": "^12.1.0",
"jest": "^29.7.0",
"ts-jest": "29.4.0",
"@posthog-tooling/rollup-utils": "1.0.0",
"@posthog-tooling/tsconfig-base": "1.0.0"
},
"peerDependencies": {
"next": ">12.1.0"
},
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"build": "rslib build",
"test:unit": "jest",
"dev": "rslib build --watch",
"package": "pnpm pack --out $PACKAGE_DEST/%s.tgz"
}
}