Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package json file updates #1

Merged
merged 3 commits into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@

> This project is an extension from the original repository created by [ZakAlbert](https://github.com/ZakAlbert)

This project has an npm library for [Material 3](https://m3.material.io/) theme, so you can add to your project and play-around this theme
This project has an [npm library](https://www.npmjs.com/package/@react-m3/m3) for [Material 3](https://m3.material.io/) theme, so you can add to your project and play-around this theme
created on the top of `@mui/material`.


```shell
npm i @react-m3/m3
```
5 changes: 4 additions & 1 deletion libs/m3/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@react-m3/m3",
"version": "0.0.1",
"version": "0.0.0-pre-alpha.1",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"publishConfig": {
"access": "public"
}
}
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@

"build:m3": "npx nx build m3",
"test:m3": "npx nx test m3",
"lint:m3": "npx nx lint m3"
"lint:m3": "npx nx lint m3",

"publish": "npm publish --access public"
},
"private": true,
"private": false,
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
Expand Down