-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.07 KB
/
package.json
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "nayan",
"private": false,
"sideEffects": false,
"description": "Nayan UI provides React component library based on Tailwind CSS and Radix UI (Shadcn). This library is a collection of pre-designed and pre-built React components that can be used to quickly and easily build beautiful, functional and fully accessible user interfaces for your web application.",
"version": "2.19.0",
"type": "module",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"homepage": "https://www.nayanui.com",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node server",
"preview": "NODE_ENV=production node server",
"debug": "node --inspect-brk server",
"build": "rimraf dist && vite build",
"build:website": "rimraf dist && tsc && npm run build:client && npm run build:server",
"build:client": "vite build -c vite.website.ts --outDir dist/client",
"build:server": "vite build -c vite.website.ts --outDir dist/server --ssr src/entry-server.jsx",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"format": "prettier --write .",
"sitemaper": "npx seo-master create sitemap -w http://localhost:7100 -r https://www.nayanui.com -o ./public/sitemap.xml"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.394.0",
"react-code-blocks": "^0.1.6",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.51.3",
"react-linkify": "^1.0.0-alpha",
"react-select": "^5.8.0"
},
"peerDependencies": {
"react": "16.8.0 || >=17.x",
"react-dom": "16.8.0 || >=17.x",
"react-router-dom": "^6.16.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-istanbul": "^1.5.0",
"autoprefixer": "^10.4.19",
"compression": "^1.7.4",
"express": "^4.19.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.21",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"rimraf": "^5.0.5",
"serve-static": "^1.15.0",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.8.3",
"vitest": "^1.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css}": [
"npm run format"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ursnj/nayan"
},
"keywords": [
"Nayan UI",
"React Component Library",
"React Reusable Components",
"React UI Library",
"Tailwind CSS",
"Radix UI",
"@shadcn/ui",
"React JS",
"Next JS",
"Vite",
"Dev Tools",
"seo-master"
],
"author": "Niranjan Devasani",
"bugs": {
"url": "https://github.com/ursnj/nayan/issues"
},
"license": "ISC"
}