-
-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.86 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
{
"name": "@material-tailwind/react",
"homepage": "https://material-tailwind.com",
"version": "2.1.9",
"description": "@material-tailwind/react is an easy-to-use components library for ReactJS & Tailwind CSS inspired by Material Design.",
"repository": "https://github.com/creativetimofficial/material-tailwind",
"license": "MIT",
"module": "dist/es6/index.js",
"typings": "index.d.ts",
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"buildbase:commonjs": "swc ./src -d ./dist/commonjs --only ./src/**/*.ts --config-file .swcrc",
"buildbase:es6": "swc ./src -d ./dist/es6 --only ./src/**/*.ts --config-file .es6.swcrc --no-swcrc",
"buildbase:dts": "tsc --declaration --declarationMap --emitDeclarationOnly",
"buildbase:dts:es6": "pnpm buildbase:dts --project tsconfig.es6.json",
"copy:commonjs": "cp ./package.json ./dist/commonjs && cp ./README.md ./dist/commonjs && cp ./LICENSE ./dist/commonjs",
"copy:es6": "cp ./package.json ./dist/es6 && cp ./README.md ./dist/es6 && cp ./LICENSE ./dist/es6",
"build:commonjs": "pnpm buildbase:commonjs && pnpm buildbase:dts && pnpm copy:commonjs",
"build:es6": "pnpm buildbase:es6 && pnpm buildbase:dts:es6 && pnpm copy:es6",
"build": "pnpm build:commonjs && pnpm build:es6",
"lint:check": "eslint . --ext js,jsx,ts,tsx --max-warnings=0 --config .eslintrc.json --no-eslintrc",
"prettier:check": "prettier -c ."
},
"dependencies": {
"@floating-ui/react": "0.19.0",
"classnames": "2.3.2",
"deepmerge": "4.2.2",
"framer-motion": "6.5.1",
"material-ripple-effects": "2.0.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "1.8.1"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"devDependencies": {
"@swc/cli": "0.1.59",
"@swc/core": "1.3.24",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"path": "0.12.7",
"prettier": "2.8.1",
"typescript": "4.9.4"
},
"keywords": [
"material tailwind",
"material tailwind react",
"javascript",
"react",
"next",
"create react app",
"remix",
"vite",
"gatsby",
"tailwind",
"tailwind components",
"tailwind elements",
"tailwind library",
"react library",
"react components library",
"tailwind sections",
"tailwind css",
"tailwind ui",
"tailwind css react",
"tailwind css next",
"tailwind css remix",
"tailwind css vite",
"tailwind css gatsby"
]
}