-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.75 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
{
"name": "@clerk/headless",
"version": "0.0.6",
"private": true,
"sideEffects": false,
"type": "module",
"exports": {
"./accordion": {
"import": "./dist/primitives/accordion/index.js",
"types": "./dist/primitives/accordion/index.d.ts"
},
"./tabs": {
"import": "./dist/primitives/tabs/index.js",
"types": "./dist/primitives/tabs/index.d.ts"
},
"./tooltip": {
"import": "./dist/primitives/tooltip/index.js",
"types": "./dist/primitives/tooltip/index.d.ts"
},
"./popover": {
"import": "./dist/primitives/popover/index.js",
"types": "./dist/primitives/popover/index.d.ts"
},
"./select": {
"import": "./dist/primitives/select/index.js",
"types": "./dist/primitives/select/index.d.ts"
},
"./menu": {
"import": "./dist/primitives/menu/index.js",
"types": "./dist/primitives/menu/index.d.ts"
},
"./autocomplete": {
"import": "./dist/primitives/autocomplete/index.js",
"types": "./dist/primitives/autocomplete/index.d.ts"
},
"./collapsible": {
"import": "./dist/primitives/collapsible/index.js",
"types": "./dist/primitives/collapsible/index.d.ts"
},
"./dialog": {
"import": "./dist/primitives/dialog/index.js",
"types": "./dist/primitives/dialog/index.d.ts"
},
"./file-upload": {
"import": "./dist/primitives/file-upload/index.js",
"types": "./dist/primitives/file-upload/index.d.ts"
},
"./otp": {
"import": "./dist/primitives/otp/index.js",
"types": "./dist/primitives/otp/index.d.ts"
},
"./hooks": {
"import": "./dist/hooks/index.js",
"types": "./dist/hooks/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
}
},
"scripts": {
"build": "rm -rf dist && vite build",
"dev": "vite build --watch",
"lint": "eslint src && pnpm typecheck",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clerk/shared": "workspace:^",
"@floating-ui/react": "catalog:repo"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"axe-core": "^4.11.3",
"happy-dom": "^20.8.9",
"react": "catalog:react",
"react-dom": "catalog:react",
"rollup-plugin-preserve-directives": "^0.4.0",
"typescript": "catalog:repo",
"vite": "6.4.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "4.1.9",
"vitest-axe": "^0.1.0"
},
"peerDependencies": {
"react": "catalog:peer-react",
"react-dom": "catalog:peer-react"
}
}