forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.84 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
{
"name": "@clerk/ui",
"version": "0.1.18",
"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": "npx bundlewatch --config bundlewatch.config.json",
"dev": "tsup --watch",
"dev:theme-builder": "concurrently \"npm run dev\" \"cd theme-builder && npm run dev\"",
"test": "vitest"
},
"dependencies": {
"@clerk/elements": "0.19.1",
"@clerk/shared": "2.12.1",
"@clerk/types": "4.32.0",
"@formkit/auto-animate": "^0.8.2",
"@radix-ui/react-slot": "^1.1.0",
"cmdk": "^1.0.0",
"cva": "^1.0.0-beta.1",
"react-aria-components": "^1.2.1"
},
"devDependencies": {
"@clerk/eslint-config-custom": "*",
"@clerk/tailwindcss-transformer": "*",
"@testing-library/react": "^16.0.0",
"@vitejs/plugin-react": "^4.3.1",
"bundlewatch": "^0.4.0",
"concurrently": "^8.2.2",
"jsdom": "^24.1.1"
}
}