-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.9 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.9 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
{
"name": "@availity/mui-event-tracker",
"version": "2.0.5",
"description": "Availity MUI EventTracker Component - part of the @availity/element design system",
"keywords": [
"react",
"typescript",
"availity",
"mui"
],
"homepage": "https://availity.github.io/element/?path=/docs/components-event-tracker-introduction--docs",
"bugs": {
"url": "https://github.com/Availity/element/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/element.git",
"directory": "packages/event-tracker"
},
"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-button": "workspace:^",
"@availity/mui-form-utils": "workspace:^",
"@availity/mui-layout": "workspace:^",
"@availity/mui-menu": "workspace:^",
"@availity/mui-textfield": "workspace:^",
"@availity/mui-typography": "workspace:^",
"@mui/material": "^7.3.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"tsup": "^8.4.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@mui/material": "^7.0.0",
"react": ">=17.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@availity/analytics-core": "^6.1.2"
},
"sideEffects": false
}