-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.31 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
{
"name": "@availity/mui-page-header",
"version": "2.0.2",
"description": "Availity MUI PageHeader Component - part of the @availity/element design system",
"keywords": [
"react",
"typescript",
"availity",
"mui"
],
"homepage": "https://availity.github.io/element/?path=/docs/components-page-header-introduction--docs",
"bugs": {
"url": "https://github.com/Availity/element/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/element.git",
"directory": "packages/page-header"
},
"license": "MIT",
"author": "Availity Developers <AVOSS@availity.com>",
"browser": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"clean": "rm -rf dist",
"clean:nm": "rm -rf node_modules",
"publish": "yarn npm publish --tolerate-republish --access public",
"publish:canary": "yarn npm publish --access public --tag canary"
},
"devDependencies": {
"@availity/mui-breadcrumbs": "workspace:^",
"@availity/mui-button": "workspace:^",
"@availity/mui-divider": "workspace:^",
"@availity/mui-layout": "workspace:^",
"@availity/mui-link": "workspace:^",
"@availity/mui-tabs": "workspace:^",
"@availity/mui-typography": "workspace:^",
"@mui/material": "^7.3.4",
"@tanstack/react-query": "^5.90.16",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-image": "^4.1.0",
"tsup": "^8.4.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@availity/mui-breadcrumbs": "workspace:^",
"@availity/mui-button": "workspace:^",
"@availity/mui-divider": "workspace:^",
"@availity/mui-layout": "workspace:^",
"@availity/mui-link": "workspace:^",
"@availity/mui-spaces": "workspace:^",
"@availity/mui-typography": "workspace:^",
"@mui/material": "^7.0.0",
"react": ">=17.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@availity/mui-feedback": "workspace:^"
},
"sideEffects": false
}