-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.68 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.68 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
{
"name": "laxod",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/laxod/ui.git"
},
"author": "Maxim maxim@laxod.com",
"bugs": {
"url": "https://github.com/laxod/ui/issues"
},
"homepage": "https://laxod.com",
"keywords": [
"react",
"radix-ui",
"components",
"library"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"lucide-react": ">=0.517.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-toast": "^1.2.15",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"sideEffects": [
"*.css"
],
"engines": {
"node": ">=18"
},
"peerDependenciesMeta": {
"lucide-react": {
"optional": false
},
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
}
}