-
Notifications
You must be signed in to change notification settings - Fork 446
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.85 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@clerk/nextjs",
"version": "7.0.13",
"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"
},
"./legacy": {
"types": "./dist/types/legacy.d.ts",
"import": "./dist/esm/legacy.js",
"require": "./dist/cjs/legacy.js"
},
"./types": "./dist/types/types/index.d.ts"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"server",
"errors",
"webhooks"
],
"scripts": {
"build": "pnpm clean && tsup",
"build:declarations": "tsc -p tsconfig.declarations.json",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"dev:pub": "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",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@clerk/backend": "workspace:^",
"@clerk/react": "workspace:^",
"@clerk/shared": "workspace:^",
"server-only": "0.0.1",
"tslib": "catalog:repo"
},
"devDependencies": {
"crypto-es": "^2.1.0",
"next": "15.5.13"
},
"peerDependencies": {
"next": "^15.2.8 || ^15.3.8 || ^15.4.10 || ^15.5.9 || ^15.6.0-0 || ^16.0.10 || ^16.1.0-0",
"react": "catalog:peer-react",
"react-dom": "catalog:peer-react"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
}
}