@davi-ai/retorik-framework 1.0.7
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/README.md +508 -0
- package/dist/index.d.ts +423 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +16355 -0
- package/dist/index.js.map +1 -0
- package/dist/index.modern.js +16097 -0
- package/dist/index.modern.js.map +1 -0
- package/dist/layers-2x.b7b89169.png +0 -0
- package/dist/layers.760a0456.png +0 -0
- package/dist/marker-icon.3f7d3721.png +0 -0
- package/package.json +182 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@davi-ai/retorik-framework",
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Retorik Framework package",
|
|
5
|
+
"author": "DAVI",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "none",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"module": "dist/index.modern.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"source": "src/index.tsx",
|
|
12
|
+
"standalone": "standalone/index.js",
|
|
13
|
+
"targets": {
|
|
14
|
+
"standalone": {
|
|
15
|
+
"context": "browser",
|
|
16
|
+
"outputFormat": "esmodule",
|
|
17
|
+
"distDir": "standalone",
|
|
18
|
+
"includeNodeModules": {
|
|
19
|
+
"@storybook/addon-actions": false,
|
|
20
|
+
"@storybook/addon-essentials": false,
|
|
21
|
+
"@storybook/addon-interactions": false,
|
|
22
|
+
"@storybook/addon-links": false,
|
|
23
|
+
"@storybook/addon-postcss": false,
|
|
24
|
+
"@storybook/builder-webpack5": false,
|
|
25
|
+
"@storybook/manager-webpack5": false,
|
|
26
|
+
"@storybook/preset-create-react-app": false,
|
|
27
|
+
"@storybook/react": false,
|
|
28
|
+
"@storybook/testing-library": false,
|
|
29
|
+
"@testing-library/jest-dom": false,
|
|
30
|
+
"@testing-library/react": false,
|
|
31
|
+
"@testing-library/react-hooks": false,
|
|
32
|
+
"@testing-library/user-event": false,
|
|
33
|
+
"eslint": false,
|
|
34
|
+
"eslint-config-prettier": false,
|
|
35
|
+
"eslint-config-standard": false,
|
|
36
|
+
"eslint-config-standard-react": false,
|
|
37
|
+
"eslint-plugin-import": false,
|
|
38
|
+
"eslint-plugin-node": false,
|
|
39
|
+
"eslint-plugin-prettier": false,
|
|
40
|
+
"eslint-plugin-promise": false,
|
|
41
|
+
"eslint-plugin-react": false,
|
|
42
|
+
"eslint-plugin-standard": false,
|
|
43
|
+
"jest-junit": false
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"module": {
|
|
47
|
+
"context": "browser",
|
|
48
|
+
"outputFormat": "esmodule",
|
|
49
|
+
"distDir": "dist"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=10"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "parcel build",
|
|
57
|
+
"start": "parcel watch",
|
|
58
|
+
"lint": "eslint src/ --ext .tsx,.ts --ignore-pattern \"**/*.test.tsx\" --ignore-pattern \"**/*.test.ts\" --fix",
|
|
59
|
+
"test:CI": "run-s test:unit test:lint test:build",
|
|
60
|
+
"test:build": "run-s build",
|
|
61
|
+
"test:lint": "eslint .",
|
|
62
|
+
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
63
|
+
"test": "react-scripts test --env=jsdom",
|
|
64
|
+
"credentials": "vsts-npm-auth -config .npmrc",
|
|
65
|
+
"storybook": "npm run build-tailwind && start-storybook -p 6006",
|
|
66
|
+
"build-storybook": "npm run build-tailwind && build-storybook",
|
|
67
|
+
"build-tailwind": "npx tailwindcss build -i ./src/tailwind.css -o ./.storybook/stories/styles.css"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"react": "18",
|
|
71
|
+
"react-dom": "18"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@babel/core": "^7.19.1",
|
|
75
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
76
|
+
"@parcel/packager-ts": "^2.9.1",
|
|
77
|
+
"@parcel/transformer-inline-string": "^2.9.1",
|
|
78
|
+
"@parcel/transformer-typescript-types": "^2.9.1",
|
|
79
|
+
"@parcel/validator-eslint": "^2.9.1",
|
|
80
|
+
"@parcel/validator-typescript": "^2.9.1",
|
|
81
|
+
"@storybook/addon-actions": "^6.5.12",
|
|
82
|
+
"@storybook/addon-essentials": "^6.5.12",
|
|
83
|
+
"@storybook/addon-interactions": "^6.5.12",
|
|
84
|
+
"@storybook/addon-links": "^6.5.12",
|
|
85
|
+
"@storybook/addon-postcss": "^2.0.0",
|
|
86
|
+
"@storybook/builder-webpack5": "^6.5.12",
|
|
87
|
+
"@storybook/manager-webpack5": "^6.5.12",
|
|
88
|
+
"@storybook/preset-create-react-app": "^4.1.2",
|
|
89
|
+
"@storybook/react": "^6.5.12",
|
|
90
|
+
"@storybook/testing-library": "^0.0.13",
|
|
91
|
+
"@testing-library/jest-dom": "^5.16.3",
|
|
92
|
+
"@testing-library/react": "^12.1.5",
|
|
93
|
+
"@testing-library/react-hooks": "^7.0.2",
|
|
94
|
+
"@testing-library/user-event": "^7.2.1",
|
|
95
|
+
"@types/jest": "^27.5.1",
|
|
96
|
+
"@types/leaflet": "^1.8.0",
|
|
97
|
+
"@types/node": "^12.12.38",
|
|
98
|
+
"@types/react": "18",
|
|
99
|
+
"@types/react-dom": "18",
|
|
100
|
+
"@types/testing-library__jest-dom": "^5.14.5",
|
|
101
|
+
"@types/testing-library__react": "latest",
|
|
102
|
+
"@typescript-eslint/eslint-plugin": "^5.0",
|
|
103
|
+
"@typescript-eslint/parser": "^5.0",
|
|
104
|
+
"autoprefixer": "^10.4.7",
|
|
105
|
+
"babel-eslint": "^10.0.3",
|
|
106
|
+
"babel-loader": "^8.2.5",
|
|
107
|
+
"buffer": "^5.7.1",
|
|
108
|
+
"canvas": "^2.9.0",
|
|
109
|
+
"cross-env": "^7.0.2",
|
|
110
|
+
"crypto-browserify": "^3.12.0",
|
|
111
|
+
"eslint": "^7.32.0",
|
|
112
|
+
"eslint-config-prettier": "^6.7.0",
|
|
113
|
+
"eslint-config-standard": "^14.1.0",
|
|
114
|
+
"eslint-config-standard-react": "^9.2.0",
|
|
115
|
+
"eslint-plugin-import": "^2.18.2",
|
|
116
|
+
"eslint-plugin-node": "^11.0.0",
|
|
117
|
+
"eslint-plugin-prettier": "^3.1.1",
|
|
118
|
+
"eslint-plugin-promise": "^4.2.1",
|
|
119
|
+
"eslint-plugin-react": "^7.17.0",
|
|
120
|
+
"eslint-plugin-standard": "^4.0.1",
|
|
121
|
+
"https-browserify": "^1.0.0",
|
|
122
|
+
"jest-junit": "^13.2.0",
|
|
123
|
+
"npm-run-all": "^4.1.5",
|
|
124
|
+
"parcel": "^2.9.1",
|
|
125
|
+
"postcss": "^8.4.14",
|
|
126
|
+
"postcss-url": "^10.1.3",
|
|
127
|
+
"prettier": "^2.0.4",
|
|
128
|
+
"process": "^0.11.10",
|
|
129
|
+
"punycode": "^1.4.1",
|
|
130
|
+
"querystring-es3": "^0.2.1",
|
|
131
|
+
"raw-loader": "^4.0.2",
|
|
132
|
+
"react": "^18",
|
|
133
|
+
"react-docgen-typescript-plugin": "^1.0.5",
|
|
134
|
+
"react-dom": "^18",
|
|
135
|
+
"react-scripts": "5.0.1",
|
|
136
|
+
"react-test-renderer": "^18",
|
|
137
|
+
"stream-browserify": "^3.0.0",
|
|
138
|
+
"stream-http": "^3.2.0",
|
|
139
|
+
"tailwindcss": "^3.1.0",
|
|
140
|
+
"typescript": "5.0",
|
|
141
|
+
"url": "^0.11.0",
|
|
142
|
+
"util": "^0.12.4"
|
|
143
|
+
},
|
|
144
|
+
"files": [
|
|
145
|
+
"dist"
|
|
146
|
+
],
|
|
147
|
+
"dependencies": {
|
|
148
|
+
"@davi-ai/body-engine-sprite": "^1.0.0",
|
|
149
|
+
"@davi-ai/retorik-weather": "latest",
|
|
150
|
+
"@davi-ai/speechmarkdown-davi-js": "1.0.2",
|
|
151
|
+
"@davi-ai/web-speech-cognitive-services-davi": "0.0.2",
|
|
152
|
+
"@fluentui/react": "^8.103.3",
|
|
153
|
+
"@lottiefiles/react-lottie-player": "^3.4.1",
|
|
154
|
+
"@opentelemetry/api": "^1.4.1",
|
|
155
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.41.0",
|
|
156
|
+
"@opentelemetry/resources": "^1.15.0",
|
|
157
|
+
"@opentelemetry/sdk-trace-web": "^1.15.0",
|
|
158
|
+
"@opentelemetry/semantic-conventions": "^1.15.0",
|
|
159
|
+
"@swc/helpers": "^0.5.0",
|
|
160
|
+
"@types/geojson": "^7946.0.10",
|
|
161
|
+
"@types/jsdom": "^16.2.14",
|
|
162
|
+
"@use-gesture/react": "^10.2.15",
|
|
163
|
+
"adaptivecards": "^3.0.0-beta.9",
|
|
164
|
+
"botframework-webchat": "^4.14.1",
|
|
165
|
+
"botframework-webchat-api": "^4.14.1",
|
|
166
|
+
"botframework-webchat-component": "^4.14.1",
|
|
167
|
+
"botframework-webchat-core": "^4.14.1",
|
|
168
|
+
"classnames": "^2.3.1",
|
|
169
|
+
"leaflet": "^1.9.2",
|
|
170
|
+
"markdown-it": "^12.3.2",
|
|
171
|
+
"postcss-copy": "^7.1.0",
|
|
172
|
+
"qrcode": "^1.5.1",
|
|
173
|
+
"react-device-detect": "^2.2.3",
|
|
174
|
+
"react-error-boundary": "^4.0.10",
|
|
175
|
+
"react-leaflet": "^4.1.0",
|
|
176
|
+
"react-say": "^2.1.0",
|
|
177
|
+
"react-shadow": "^19.0.3",
|
|
178
|
+
"react-webcam": "^6.0.0",
|
|
179
|
+
"swiper": "^8.4.5",
|
|
180
|
+
"zustand": "^4.1.1"
|
|
181
|
+
}
|
|
182
|
+
}
|