@sommatic/react-sdk 1.0.1
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/LICENSE +201 -0
- package/README.md +50 -0
- package/dist/assets/logos/sommatic-logo-dark.svg +27 -0
- package/dist/assets/utils/empty.svg +3514 -0
- package/dist/react-sdk.cjs.js +114 -0
- package/dist/react-sdk.cjs.js.map +1 -0
- package/dist/react-sdk.esm.js +112 -0
- package/dist/react-sdk.esm.js.map +1 -0
- package/package.json +122 -0
package/package.json
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sommatic/react-sdk",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "UI SDK components for Sommatic",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"main": "dist/react-sdk.cjs.js",
|
|
9
|
+
"module": "dist/react-sdk.esm.js",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "rollup -c",
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
19
|
+
"storybook": "storybook dev -p 6006",
|
|
20
|
+
"build-storybook": "storybook build",
|
|
21
|
+
"version-patch": "npm version patch",
|
|
22
|
+
"publish": "npm publish"
|
|
23
|
+
},
|
|
24
|
+
"author": "Camilo Alexander Rodriguez Cuaran <camiepisode@outlook.com>",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/sommatic/sommatic-react-sdk/issues"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/sommatic/sommatic-react-sdk.git"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/sommatic/sommatic-react-sdk",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"sommatic",
|
|
36
|
+
"sdk",
|
|
37
|
+
"core",
|
|
38
|
+
"javascript",
|
|
39
|
+
"react"
|
|
40
|
+
],
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": "^17 || ^18 || ^19",
|
|
43
|
+
"react-dom": "^17 || ^18 || ^19",
|
|
44
|
+
"react-router-dom": "^5 || ^6 || ^7"
|
|
45
|
+
},
|
|
46
|
+
"peerDependenciesMeta": {
|
|
47
|
+
"react": {
|
|
48
|
+
"optional": false
|
|
49
|
+
},
|
|
50
|
+
"react-dom": {
|
|
51
|
+
"optional": false
|
|
52
|
+
},
|
|
53
|
+
"react-router-dom": {
|
|
54
|
+
"optional": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@cyntler/react-doc-viewer": "^1.14.1",
|
|
59
|
+
"@emotion/react": "^11.13.3",
|
|
60
|
+
"@emotion/styled": "^11.13.0",
|
|
61
|
+
"@link-loom/react-sdk": "^1.1.49",
|
|
62
|
+
"@mediapipe/camera_utils": "^0.3.1675466862",
|
|
63
|
+
"@mediapipe/face_mesh": "^0.4.1633559619",
|
|
64
|
+
"@monaco-editor/react": "^4.7.0",
|
|
65
|
+
"@mui/icons-material": "^6.1.1",
|
|
66
|
+
"@mui/material": "^6.5.0",
|
|
67
|
+
"@mui/x-data-grid": "^7.17.0",
|
|
68
|
+
"@prose-ui/react": "^2.0.7",
|
|
69
|
+
"@prose-ui/style": "^2.0.7",
|
|
70
|
+
"@tensorflow/tfjs": "^4.20.0",
|
|
71
|
+
"@xyflow/react": "^12.10.0",
|
|
72
|
+
"@yaireo/tagify": "^4.22.2",
|
|
73
|
+
"ast-types": "^0.16.1",
|
|
74
|
+
"axios": "^1.7.7",
|
|
75
|
+
"bootstrap": "^5.3.3",
|
|
76
|
+
"clipboard": "^2.0.11",
|
|
77
|
+
"dayjs": "^1.11.13",
|
|
78
|
+
"dotenv": "^16.4.5",
|
|
79
|
+
"katex": "^0.16.28",
|
|
80
|
+
"react-markdown": "^10.1.0",
|
|
81
|
+
"react-router-dom": "^5 || ^6 || ^7",
|
|
82
|
+
"react-select": "^5.8.0",
|
|
83
|
+
"rehype-highlight": "^7.0.2",
|
|
84
|
+
"rehype-katex": "^7.0.1",
|
|
85
|
+
"remark-gfm": "^4.0.1",
|
|
86
|
+
"remark-math": "^6.0.0",
|
|
87
|
+
"styled-components": "^6.3.8",
|
|
88
|
+
"sweetalert2": "^11.22.4",
|
|
89
|
+
"sweetalert2-react-content": "^5.1.0"
|
|
90
|
+
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@babel/core": "^7.25.2",
|
|
93
|
+
"@babel/preset-env": "^7.24.3",
|
|
94
|
+
"@babel/preset-react": "^7.24.7",
|
|
95
|
+
"@chromatic-com/storybook": "^1.9.0",
|
|
96
|
+
"@rollup/plugin-alias": "^5.1.0",
|
|
97
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
98
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
99
|
+
"@rollup/plugin-image": "^3.0.3",
|
|
100
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
101
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
102
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
103
|
+
"@rollup/plugin-url": "^8.0.2",
|
|
104
|
+
"@storybook/addon-controls": "^8.3.4",
|
|
105
|
+
"@storybook/addon-essentials": "^8.3.4",
|
|
106
|
+
"@storybook/addon-interactions": "^8.3.4",
|
|
107
|
+
"@storybook/addon-links": "^8.3.4",
|
|
108
|
+
"@storybook/addon-onboarding": "^8.3.4",
|
|
109
|
+
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
|
|
110
|
+
"@storybook/blocks": "^8.3.4",
|
|
111
|
+
"@storybook/react": "^8.3.4",
|
|
112
|
+
"@storybook/react-webpack5": "^8.3.4",
|
|
113
|
+
"@storybook/test": "^8.3.4",
|
|
114
|
+
"postcss": "^8.4.38",
|
|
115
|
+
"prop-types": "^15.8.1",
|
|
116
|
+
"rollup": "^4.13.2",
|
|
117
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
118
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
119
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
120
|
+
"storybook": "^8.3.4"
|
|
121
|
+
}
|
|
122
|
+
}
|