@clerk/nextjs
Version:
Clerk SDK for NextJS
91 lines • 2.43 kB
JSON
{
"name": "@clerk/nextjs",
"version": "6.10.4-snapshot.v20250129203459",
"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"
}
},
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"server",
"errors"
],
"dependencies": {
"server-only": "0.0.1",
"tslib": "2.4.1",
"@clerk/backend": "^1.23.9-snapshot.v20250129203459",
"@clerk/clerk-react": "^5.22.8-snapshot.v20250129203459",
"@clerk/types": "^4.44.2-snapshot.v20250129203459",
"@clerk/shared": "^2.20.16-snapshot.v20250129203459"
},
"devDependencies": {
"crypto-es": "^2.1.0",
"next": "^14.2.23"
},
"peerDependencies": {
"next": "^13.5.4 || ^14.0.3 || ^15.0.0",
"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",
"lint": "eslint src/",
"lint:attw": "attw --pack . --ignore-rules no-resolution unexpected-module-syntax",
"lint:publint": "publint",
"publish:local": "pnpm yalc push --replace --sig",
"test": "vitest run",
"test:watch": "vitest watch"
}
}