2022-05-17 08:17:39 +07:00
|
|
|
{
|
|
|
|
"name": "@cubetiq/muui",
|
2022-05-17 09:21:58 +07:00
|
|
|
"version": "0.0.1-alpha.7",
|
2022-05-17 08:17:39 +07:00
|
|
|
"author": {
|
|
|
|
"name": "Sambo Chea",
|
|
|
|
"email": "sombochea@cubetiqs.com"
|
|
|
|
},
|
|
|
|
"description": "MUUI a React UI library for building user interfaces",
|
2022-05-17 09:21:58 +07:00
|
|
|
"repository": {
|
|
|
|
"url": "https://github.com/CUBETIQ/cubetiq-muui.git",
|
|
|
|
"type": "git"
|
|
|
|
},
|
2022-05-17 08:17:39 +07:00
|
|
|
"keywords": [
|
|
|
|
"muui",
|
|
|
|
"react",
|
|
|
|
"vite",
|
|
|
|
"mui"
|
|
|
|
],
|
2022-05-17 08:22:52 +07:00
|
|
|
"license": "MIT",
|
2022-05-17 08:57:31 +07:00
|
|
|
"main": "./dist/muui.umd.js",
|
|
|
|
"module": "./dist/muui.es.js",
|
2022-05-17 08:37:44 +07:00
|
|
|
"types": "./dist/index.d.ts",
|
2022-05-17 08:17:39 +07:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2022-05-17 08:57:31 +07:00
|
|
|
"import": "./dist/muui.es.js",
|
|
|
|
"require": "./dist/muui.umd.js"
|
2022-05-17 08:17:39 +07:00
|
|
|
}
|
|
|
|
},
|
2022-05-17 08:37:44 +07:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-05-17 08:17:39 +07:00
|
|
|
"scripts": {
|
|
|
|
"dev": "vite",
|
2022-05-17 08:44:41 +07:00
|
|
|
"build": "tsc && vite build"
|
2022-05-17 08:37:44 +07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^16.8.0 || 17.x || 18.x",
|
|
|
|
"react-dom": "^16.8.0 || 17.x | 18.x"
|
2022-05-17 08:17:39 +07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^17.0.34",
|
|
|
|
"@types/react": "^18.0.0",
|
|
|
|
"@types/react-dom": "^18.0.0",
|
|
|
|
"@vitejs/plugin-react": "^1.3.0",
|
|
|
|
"eslint": "^8.15.0",
|
|
|
|
"eslint-plugin-react": "^7.29.4",
|
|
|
|
"typescript": "^4.6.3",
|
|
|
|
"vite": "^2.9.9",
|
2022-05-17 08:45:48 +07:00
|
|
|
"vite-plugin-dts": "^1.1.1"
|
2022-05-17 08:17:39 +07:00
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true,
|
|
|
|
"es2020": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:react/recommended"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module"
|
|
|
|
}
|
|
|
|
},
|
2022-05-17 08:37:44 +07:00
|
|
|
"dependencies": {
|
|
|
|
"@emotion/react": "^11.9.0",
|
|
|
|
"@emotion/styled": "^11.8.1",
|
|
|
|
"@mui/icons-material": "^5.6.2",
|
|
|
|
"@mui/material": "^5.7.0",
|
|
|
|
"react": "^18.0.0",
|
|
|
|
"react-dom": "^18.0.0"
|
|
|
|
},
|
2022-05-17 08:20:53 +07:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
}
|
2022-05-17 08:44:41 +07:00
|
|
|
}
|