-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 KB
/
package.json
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
{
"name": "@rsgoodall/reusable-components",
"version": "1.0.0",
"description": "This package implements react components based on MUI",
"type": "module",
"main": "lib/index.cjs",
"exports": {
"import": {
"default": "./lib/index.esm.js",
"types": "./lib/types/index.d.ts"
},
"require": {
"default": "./lib/index.cjs",
"types": "./lib/types/index.d.ts"
}
},
"files": [
"lib"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"release-package": "npm run build && npx changeset publish"
},
"author": "codeef",
"license": "MIT",
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/material": "5.15.0"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.13.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.4.2"
}
}