UNPKG

@clerk/nextjs

Version:

Clerk SDK for NextJS

104 lines 2.77 kB
{ "name": "@clerk/nextjs", "version": "6.31.4", "description": "Clerk SDK for NextJS", "keywords": [ "clerk", "typescript", "nextjs", "auth", "authentication", "passwordless", "session", "jwt" ], "homepage": "https://clerk.com/", "bugs": { "url": "https://github.com/clerk/javascript/issues" }, "repository": { "type": "git", "url": "git+https://github.com/clerk/javascript.git", "directory": "packages/nextjs" }, "license": "MIT", "author": "Clerk", "sideEffects": false, "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./server": { "types": "./dist/types/server/index.d.ts", "import": "./dist/esm/server/index.js", "require": "./dist/cjs/server/index.js" }, "./errors": { "types": "./dist/types/errors.d.ts", "import": "./dist/esm/errors.js", "require": "./dist/cjs/errors.js" }, "./internal": { "types": "./dist/types/internal.d.ts", "import": "./dist/esm/internal.js", "require": "./dist/cjs/internal.js" }, "./webhooks": { "types": "./dist/types/webhooks.d.ts", "import": "./dist/esm/webhooks.js", "require": "./dist/cjs/webhooks.js" }, "./experimental": { "types": "./dist/types/experimental.d.ts", "import": "./dist/esm/experimental.js", "require": "./dist/cjs/experimental.js" } }, "types": "./dist/types/index.d.ts", "files": [ "dist", "server", "errors", "webhooks" ], "dependencies": { "server-only": "0.0.1", "tslib": "2.8.1", "@clerk/backend": "^2.9.4", "@clerk/clerk-react": "^5.43.1", "@clerk/shared": "^3.22.0", "@clerk/types": "^4.81.0" }, "devDependencies": { "crypto-es": "^2.1.0", "next": "14.2.31" }, "peerDependencies": { "next": "^13.5.7 || ^14.2.25 || ^15.2.3", "react": "^18.0.0 || ^19.0.0 || ^19.0.0-0", "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-0" }, "engines": { "node": ">=18.17.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "pnpm clean && tsup", "build:declarations": "tsc -p tsconfig.declarations.json", "clean": "rimraf ./dist", "dev": "tsup --watch", "dev:publish": "pnpm dev -- --env.publish", "format": "node ../../scripts/format-package.mjs", "format:check": "node ../../scripts/format-package.mjs --check", "lint": "eslint src", "lint:attw": "attw --pack . --profile node16 --ignore-rules unexpected-module-syntax", "lint:publint": "publint", "publish:local": "pnpm yalc push --replace --sig", "test": "vitest run", "test:watch": "vitest watch" } }