@webitel/ui-sdk 24.12.118-2 → 24.12.118
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/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +1 -1
- package/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "24.12.118
|
|
3
|
+
"version": "24.12.118",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite",
|
|
@@ -18,26 +18,30 @@
|
|
|
18
18
|
"docs:preview": "vitepress preview docs",
|
|
19
19
|
"tsc": "tsc -p tsconfig.json",
|
|
20
20
|
"update-node": "nvm install --lts && nvm alias default node",
|
|
21
|
-
"i": "npm install"
|
|
22
|
-
"lint:package": "publint"
|
|
21
|
+
"i": "npm install"
|
|
23
22
|
},
|
|
24
|
-
"main": "./dist/ui-sdk.
|
|
23
|
+
"main": "./dist/@webitel/ui-sdk.mjs",
|
|
25
24
|
"type": "module",
|
|
26
25
|
"exports": {
|
|
27
26
|
".": {
|
|
28
|
-
"import": "./dist/ui-sdk.
|
|
27
|
+
"import": "./dist/@webitel/ui-sdk.mjs",
|
|
28
|
+
"require": "./dist/@webitel/ui-sdk.cjs"
|
|
29
29
|
},
|
|
30
30
|
"./store": {
|
|
31
|
-
"import": "./src/store/new/index.js"
|
|
31
|
+
"import": "./src/store/new/index.js",
|
|
32
|
+
"require": "./src/store/new/index.js"
|
|
32
33
|
},
|
|
33
34
|
"./enums": {
|
|
34
|
-
"import": "./src/enums/index.js"
|
|
35
|
+
"import": "./src/enums/index.js",
|
|
36
|
+
"require": "./src/enums/index.js"
|
|
35
37
|
},
|
|
36
38
|
"./components": {
|
|
37
|
-
"import": "./src/components/index.js"
|
|
39
|
+
"import": "./src/components/index.js",
|
|
40
|
+
"require": "./src/components/index.js"
|
|
38
41
|
},
|
|
39
42
|
"./scripts": {
|
|
40
|
-
"import": "./src/scripts/index.js"
|
|
43
|
+
"import": "./src/scripts/index.js",
|
|
44
|
+
"require": "./src/scripts/index.js"
|
|
41
45
|
},
|
|
42
46
|
"./dist*": {
|
|
43
47
|
"import": "./dist*"
|
|
@@ -158,12 +162,10 @@
|
|
|
158
162
|
"markdown-it": "^14.1.0",
|
|
159
163
|
"markdown-table": "^3.0.4",
|
|
160
164
|
"path": "^0.12.7",
|
|
161
|
-
"pinia": "^2.3.0",
|
|
162
165
|
"postcss": "^8.4.49",
|
|
163
166
|
"postcss-prefix-selector": "^2.1.0",
|
|
164
167
|
"prettier": "^3.4.2",
|
|
165
168
|
"prismjs": "^1.29.0",
|
|
166
|
-
"publint": "^0.3.6",
|
|
167
169
|
"sass": "^1.81.0",
|
|
168
170
|
"typescript": "5.7.3",
|
|
169
171
|
"typescript-eslint": "^8.22.0",
|
|
@@ -178,7 +180,8 @@
|
|
|
178
180
|
"vitest": "^3.0.6",
|
|
179
181
|
"vue": "^3.5.13",
|
|
180
182
|
"vue-tsc": "^2.1.10",
|
|
181
|
-
"vuex": "^4.1.0"
|
|
183
|
+
"vuex": "^4.1.0",
|
|
184
|
+
"pinia": "^2.3.0"
|
|
182
185
|
},
|
|
183
186
|
"optionalDependencies": {
|
|
184
187
|
"@rollup/rollup-linux-x64-gnu": "4.9.5"
|