-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "noor-ui",
"version": "0.1.0",
"author": "Javohir G'ulomjonov (Neo Nolan)",
"type": "module",
"files": [
"dist"
],
"main": "./dist/noor-ui.umd.cjs",
"module": "./dist/noor-ui.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "next dev --turbopack",
"build": "tsc -b && next build --turbopack",
"build:lib": "next build",
"build:types": "tsc --project tsconfig.build.json",
"build:all": "npm run build:types && npm run build:lib",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"export": "next export"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/noor-ui.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/noor-ui.umd.cjs"
}
},
"./style.css": "./dist/noor-ui.css"
},
"dependencies": {
"react": "19.1.0",
"react-dom": "19.1.0",
"next": "15.5.4",
"@floating-ui/react": "^0.27.16",
"@tailwindcss/vite": "^4.1.12",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"deepmerge": "^4.3.1",
"framer-motion": "^12.23.19",
"lucide-react": "^0.541.0",
"react-icons": "^5.5.0",
"react-select": "^5.10.2",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^3.0.0"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4",
"@biomejs/biome": "2.2.0",
"globals": "^16.3.0"
}
}