-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.2 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
{
"name": "@parabit/megatizerui",
"description": "UI Component Library for React Based on TypeScript + Tailwind CSS",
"license": "MIT",
"version": "0.0.41",
"keywords": [
"react",
"components",
"react components",
"ui",
"tailwind",
"tailwind components"
],
"author": "Parabit Internet Agency (https://github.com/parabit)",
"bugs": {
"url": "https://github.com/parabit/megatizerui/issues"
},
"homepage": "https://parabit.github.io/megatizerui",
"repository": {
"url": "git+https://github.com/parabit/megatizerui.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "vite",
"build:lib": "tsc -b ./tsconfig.lib.json && vite build --mode lib",
"build:docs": "tsc -b && vite build --mode docs",
"build:docs:test": "yarn build:docs && rm -rf dist-docs",
"lint": "eslint .",
"preview": "vite preview",
"deploy": "yarn build:lib && yarn build:docs && gh-pages -d dist-docs && rm -rf dist-docs"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"tailwindcss": ">=4.0.14"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@heroicons/react": "^2.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@parabit/prettier": "^0.0.5",
"@tailwindcss/vite": "^4.0.14",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-router": "^7.3.0",
"react-syntax-highlighter": "^15.6.1",
"tailwindcss": "^4.0.14",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-static-copy": "^2.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"types": "./dist/index.d.ts",
"directories": {
"lib": "lib"
}
}