-
Notifications
You must be signed in to change notification settings - Fork 438
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.16 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.16 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
{
"name": "@clerk/elements",
"version": "0.22.22",
"description": "Clerk Elements",
"keywords": [
"clerk",
"typescript",
"auth",
"authentication",
"passwordless",
"session",
"jwt",
"elements",
"radix"
],
"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/elements"
},
"license": "MIT",
"author": "Clerk",
"sideEffects": false,
"exports": {
"./*": {
"import": {
"types": "./dist/react/*/index.d.mts",
"default": "./dist/react/*/index.mjs"
},
"require": {
"types": "./dist/react/*/index.d.ts",
"default": "./dist/react/*/index.js"
}
},
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"app:build": "(cd examples/nextjs && pnpm build)",
"app:dev": "(cd examples/nextjs && pnpm dev)",
"app:dev:debug": "(cd examples/nextjs && NEXT_PUBLIC_CLERK_ELEMENTS_DEBUG=true pnpm dev)",
"app:dev:debug:server": "(cd examples/nextjs && NEXT_PUBLIC_CLERK_ELEMENTS_DEBUG=true CLERK_ELEMENTS_DEBUG_SERVER=true pnpm dev)",
"app:dev:debug:ui": "(cd examples/nextjs && NEXT_PUBLIC_CLERK_ELEMENTS_DEBUG_UI=true pnpm dev)",
"app:e2e": "(cd examples/nextjs && pnpm e2e)",
"app:lint": "(cd examples/nextjs && pnpm lint)",
"build": "tsup --env.NODE_ENV production",
"build:analyze": "tsup --env.NODE_ENV production --metafile; open https://esbuild.github.io/analyze/",
"build:declarations": "tsc --env.NODE_ENV production -p tsconfig.json",
"dev": "tsup --env.NODE_ENV development --watch",
"dev:example": "concurrently \"pnpm dev\" \"pnpm app:dev\"",
"dev:theme-builder": "TURBO_UI=0 concurrently --prefix-colors auto --names \"elements,ui,theme-builder\" \"turbo dev --filter=@clerk/elements\" \"pnpm dev -w @clerk/ui\" \"cd ../ui/theme-builder && pnpm dev\"",
"lint": "eslint src/",
"lint:attw": "attw --pack . --ignore-rules no-resolution",
"lint:publint": "publint",
"test": "jest",
"test:cache:clear": "jest --clearCache --useStderr"
},
"dependencies": {
"@clerk/clerk-react": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"@radix-ui/primitive": "^1.1.0",
"@radix-ui/react-form": "^0.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@xstate/react": "^4.1.1",
"client-only": "^0.0.1",
"tslib": "catalog:repo",
"xstate": "^5.15.0"
},
"devDependencies": {
"@statelyai/inspect": "^0.4.0",
"concurrently": "^8.2.2",
"next": "^14.2.23",
"type-fest": "^4.33.0"
},
"peerDependencies": {
"next": "^13.5.4 || ^14.0.3 || ^15",
"react": "catalog:peer-react",
"react-dom": "catalog:peer-react"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}