-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 814 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 814 Bytes
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
{
"name": "@discretize/globals",
"version": "3.6.1",
"description": "MUI dependencies, global variables, theme related stuff",
"author": "gw2princeps",
"license": "MIT",
"private": false,
"sideEffects": [
"*.css",
"*.png",
"*.jpg"
],
"files": [
"dist"
],
"module": "dist/index.js",
"//types": "dist/index.d.ts",
"scripts": {
"build": "node ../build.mjs",
"prepublish": "pnpm build"
},
"devDependencies": {
"@mui/material": "^6.5.0",
"@mui/styles": "^6.4.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tss-react": "^4.9.20"
},
"peerDependencies": {
"@mui/material": "^5.0.0 || ^6.0.0",
"@mui/styles": "^5.0.0 || ^6.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"tss-react": "^4.0.0"
}
}