@agentmark-ai/ui-components 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +673 -0
- package/dist/index.d.ts +673 -0
- package/dist/index.js +22507 -0
- package/dist/index.mjs +22504 -0
- package/package.json +90 -0
package/package.json
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agentmark-ai/ui-components",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"source": "./src/index.ts",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "tsup",
|
|
10
|
+
"lint": "eslint .",
|
|
11
|
+
"storybook": "storybook dev -p 6006",
|
|
12
|
+
"build-storybook": "storybook build"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"main": "./dist/index.js",
|
|
16
|
+
"module": "./dist/index.mjs",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": {
|
|
21
|
+
"types": "./dist/index.d.mts",
|
|
22
|
+
"default": "./dist/index.mjs"
|
|
23
|
+
},
|
|
24
|
+
"require": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"default": "./dist/index.js"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@emotion/react": "^11",
|
|
36
|
+
"@emotion/styled": "^11",
|
|
37
|
+
"@iconify/react": "^6",
|
|
38
|
+
"@mui/material": "^7",
|
|
39
|
+
"@mui/x-data-grid": "^8",
|
|
40
|
+
"@mui/x-date-pickers": "^8"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@chromatic-com/storybook": "^4.1.1",
|
|
44
|
+
"@eslint/eslintrc": "^3",
|
|
45
|
+
"@storybook/addon-a11y": "^9.1.15",
|
|
46
|
+
"@storybook/addon-docs": "^9.1.15",
|
|
47
|
+
"@storybook/addon-vitest": "^9.1.15",
|
|
48
|
+
"@storybook/components": "^8.6.14",
|
|
49
|
+
"@storybook/react-vite": "^9.1.15",
|
|
50
|
+
"@types/dagre": "^0",
|
|
51
|
+
"@types/node": "^20",
|
|
52
|
+
"@types/numeral": "^2",
|
|
53
|
+
"@types/react": "^19",
|
|
54
|
+
"@types/react-dom": "^19",
|
|
55
|
+
"@types/react-lazy-load-image-component": "^1",
|
|
56
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
57
|
+
"@vitest/browser-playwright": "^4.0.4",
|
|
58
|
+
"@vitest/coverage-v8": "^4.0.4",
|
|
59
|
+
"eslint": "^9",
|
|
60
|
+
"eslint-config-next": "15.5.6",
|
|
61
|
+
"eslint-plugin-storybook": "^9.1.15",
|
|
62
|
+
"playwright": "^1.56.1",
|
|
63
|
+
"refractor": "^5.0.0",
|
|
64
|
+
"storybook": "^9.1.15",
|
|
65
|
+
"tsup": "^8.5.0",
|
|
66
|
+
"typescript": "^5",
|
|
67
|
+
"vitest": "^4.0.4"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
71
|
+
"@hookform/resolvers": "^5.2.2",
|
|
72
|
+
"@mui/lab": "^7.0.1-beta.18",
|
|
73
|
+
"@mui/x-tree-view": "^8.15.0",
|
|
74
|
+
"@uiw/react-codemirror": "^4.25.2",
|
|
75
|
+
"@xyflow/react": "^12.9.0",
|
|
76
|
+
"dagre": "^0.8.5",
|
|
77
|
+
"numeral": "^2.0.6",
|
|
78
|
+
"react-hook-form": "^7.65.0",
|
|
79
|
+
"react-lazy-load-image-component": "^1.6.3",
|
|
80
|
+
"react-markdown": "^10.1.0",
|
|
81
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
82
|
+
"remark-gfm": "^4.0.1",
|
|
83
|
+
"yup": "^1.7.1"
|
|
84
|
+
},
|
|
85
|
+
"eslintConfig": {
|
|
86
|
+
"extends": [
|
|
87
|
+
"plugin:storybook/recommended"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
}
|