@pristy/pristy-libvue 1.2.5 → 1.4.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/assets/upload.worker-Du93awOI.js.map +1 -0
- package/dist/pristy-libvue.css +1 -1
- package/dist/{pristy-libvue.js → pristy-libvue.es.js} +42038 -4163
- package/dist/pristy-libvue.es.js.map +1 -0
- package/dist/pristy-libvue.umd.js +167 -0
- package/dist/pristy-libvue.umd.js.map +1 -0
- package/package.json +34 -10
- package/dist/pristy-libvue.umd.cjs +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pristy/pristy-libvue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Core library used by all Pristy applications",
|
|
5
5
|
"homepage": "https://pristy.fr/en/",
|
|
6
6
|
"author": "JECI SARL",
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"type": "module",
|
|
17
|
-
"main": "./dist/pristy-libvue.umd.
|
|
18
|
-
"module": "./dist/pristy-libvue.js",
|
|
17
|
+
"main": "./dist/pristy-libvue.umd.js",
|
|
18
|
+
"module": "./dist/pristy-libvue.es.js",
|
|
19
19
|
"types": "src/index.js",
|
|
20
20
|
"exports": {
|
|
21
21
|
".": {
|
|
22
|
-
"import": "./dist/pristy-libvue.js",
|
|
23
|
-
"require": "./dist/pristy-libvue.umd.
|
|
22
|
+
"import": "./dist/pristy-libvue.es.js",
|
|
23
|
+
"require": "./dist/pristy-libvue.umd.js"
|
|
24
24
|
},
|
|
25
25
|
"./dist/pristy-libvue.css": "./dist/pristy-libvue.css"
|
|
26
26
|
},
|
|
@@ -42,32 +42,56 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@alfresco/js-api": "^8.0.1",
|
|
45
|
+
"@codemirror/autocomplete": "^6.19.0",
|
|
46
|
+
"@codemirror/commands": "^6.8.1",
|
|
47
|
+
"@codemirror/gutter": "^0.19.9",
|
|
48
|
+
"@codemirror/lang-html": "^6.4.10",
|
|
49
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
50
|
+
"@codemirror/lang-markdown": "^6.3.4",
|
|
51
|
+
"@codemirror/lang-xml": "^6.1.0",
|
|
52
|
+
"@codemirror/lang-yaml": "^6.1.2",
|
|
53
|
+
"@codemirror/lint": "^6.8.5",
|
|
54
|
+
"@codemirror/search": "^6.5.11",
|
|
55
|
+
"@codemirror/state": "^6.5.2",
|
|
56
|
+
"@codemirror/view": "^6.38.4",
|
|
45
57
|
"@tato30/vue-pdf": "^1.11.4",
|
|
46
58
|
"@vueuse/core": "^12.8.2",
|
|
47
59
|
"async-retry": "^1.3.3",
|
|
48
60
|
"axios": "^1.11.0",
|
|
61
|
+
"dompurify": "^3.2.7",
|
|
49
62
|
"email-validator": "^2.0.4",
|
|
50
63
|
"keycloak-js": "^26.2.0",
|
|
64
|
+
"markdown-it": "^14.1.0",
|
|
65
|
+
"marked": "^16.3.0",
|
|
51
66
|
"p-limit": "^6.2.0",
|
|
67
|
+
"pdf-lib": "^1.17.1",
|
|
52
68
|
"pinia": "^2.3.1",
|
|
53
69
|
"primevue": "^3.53.1",
|
|
70
|
+
"quick-lru": "^7.0.1",
|
|
71
|
+
"type-check": "^0.4.0",
|
|
72
|
+
"sanitize-html": "^2.17.0",
|
|
73
|
+
"vue-draggable-next": "^2.3.0",
|
|
54
74
|
"vue-i18n": "^11.1.11",
|
|
55
75
|
"vue-router": "^4.5.1"
|
|
56
76
|
},
|
|
57
77
|
"devDependencies": {
|
|
78
|
+
"@eslint/js": "^9.31.0",
|
|
58
79
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
59
80
|
"@vitest/coverage-v8": "^3.2.4",
|
|
60
|
-
"eslint": "^9.
|
|
61
|
-
"eslint-config-prettier": "^10.1.
|
|
62
|
-
"eslint-plugin-
|
|
81
|
+
"eslint": "^9.31.0",
|
|
82
|
+
"eslint-config-prettier": "^10.1.5",
|
|
83
|
+
"eslint-plugin-import": "^2.32.0",
|
|
84
|
+
"eslint-plugin-n": "^17.21.0",
|
|
85
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
86
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
63
87
|
"eslint-plugin-vue": "^9.33.0",
|
|
64
88
|
"jsdom": "^26.1.0",
|
|
65
89
|
"prettier": "^3.6.2",
|
|
66
90
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
67
91
|
"sass-embedded": "^1.92.0",
|
|
68
|
-
"vite": "^6.3.
|
|
92
|
+
"vite": "^6.3.6",
|
|
69
93
|
"vite-plugin-eslint": "^1.8.1",
|
|
70
|
-
"vitest": "^3.2.
|
|
94
|
+
"vitest": "^3.2.4"
|
|
71
95
|
},
|
|
72
96
|
"repository": {
|
|
73
97
|
"type": "git",
|