-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (66 loc) · 1.59 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
{
"name": "mui-fast-start",
"version": "0.3.5",
"description": "Fast and easy-to-use MUI components for React",
"keywords": [
"mui",
"material-ui",
"react",
"components",
"form"
],
"author": "PersesTitan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PersesTitan/mui-fast-start.git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build && tsc -p tsconfig.json",
"lint": "eslint .",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"peerDependencies": {
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"@mui/material": ">=6",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^9.39.1",
"@mui/material": "^7.1.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tsc-alias": "^1.8.16",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "npm:rolldown-vite@7.2.5"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}