-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2 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
{
"name": "@clerk/ui",
"version": "0.3.20",
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/javascript.git",
"directory": "packages/ui"
},
"license": "MIT",
"author": {
"name": "Clerk, Inc.",
"email": "support@clerk.com",
"url": "git+https://github.com/clerk/javascript.git"
},
"sideEffects": [
"*.css"
],
"exports": {
"./contexts": {
"import": {
"types": "./dist/contexts.d.mts",
"default": "./dist/contexts.mjs"
},
"require": {
"types": "./dist/contexts.d.ts",
"default": "./dist/contexts.js"
}
},
"./*": {
"import": {
"types": "./dist/components/*.d.mts",
"browser": "./dist/components/*.mjs",
"default": "./dist/components/*.mjs"
},
"require": {
"types": "./dist/components/*.d.ts",
"browser": "./dist/components/*.js",
"default": "./dist/components/*.js"
}
},
"./styles.css": "./dist/styles.css"
},
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"bundlewatch": "pnpm dlx bundlewatch --config bundlewatch.config.json",
"dev": "tsup --watch",
"dev:theme-builder": "concurrently \"pnpm dev\" \"cd theme-builder && pnpm dev\"",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@clerk/elements": "workspace:^",
"@clerk/localizations": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"@formkit/auto-animate": "^0.8.2",
"@radix-ui/react-slot": "^1.1.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"cva": "^1.0.0-beta.1",
"dequal": "^2.0.3",
"react-aria": "^3.35.1",
"react-aria-components": "^1.2.1"
},
"devDependencies": {
"@clerk/tailwindcss-transformer": "workspace:*",
"@testing-library/react": "^16.0.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"jsdom": "^24.1.3",
"tailwindcss": "^3.4.17"
}
}