@duffcloudservices/cms 0.1.6 → 0.2.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/editor/editorBridge.js +25 -3
- package/dist/editor/editorBridge.js.map +1 -1
- package/dist/index.d.ts +65 -2
- package/dist/index.js +30 -3
- package/dist/index.js.map +1 -1
- package/dist/plugins/index.d.ts +156 -1
- package/dist/plugins/index.js +295 -8
- package/dist/plugins/index.js.map +1 -1
- package/package.json +82 -77
- package/src/components/PreviewRibbon.vue +205 -193
- package/src/components/ResponsiveImage.vue +55 -0
package/package.json
CHANGED
|
@@ -1,77 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@duffcloudservices/cms",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Vue 3 composables and Vite plugins for DCS CMS integration",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"import": "./dist/index.js"
|
|
10
|
-
},
|
|
11
|
-
"./plugins": {
|
|
12
|
-
"types": "./dist/plugins/index.d.ts",
|
|
13
|
-
"import": "./dist/plugins/index.js"
|
|
14
|
-
},
|
|
15
|
-
"./editor": {
|
|
16
|
-
"types": "./dist/editor/editorBridge.d.ts",
|
|
17
|
-
"import": "./dist/editor/editorBridge.js"
|
|
18
|
-
},
|
|
19
|
-
"./components": {
|
|
20
|
-
"import": "./src/components/PreviewRibbon.vue"
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
},
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@duffcloudservices/cms",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Vue 3 composables and Vite plugins for DCS CMS integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./plugins": {
|
|
12
|
+
"types": "./dist/plugins/index.d.ts",
|
|
13
|
+
"import": "./dist/plugins/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./editor": {
|
|
16
|
+
"types": "./dist/editor/editorBridge.d.ts",
|
|
17
|
+
"import": "./dist/editor/editorBridge.js"
|
|
18
|
+
},
|
|
19
|
+
"./components": {
|
|
20
|
+
"import": "./src/components/PreviewRibbon.vue"
|
|
21
|
+
},
|
|
22
|
+
"./responsive-image": {
|
|
23
|
+
"import": "./src/components/ResponsiveImage.vue"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"src/components"
|
|
31
|
+
],
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"vue": "^3.4.0",
|
|
34
|
+
"@unhead/vue": "^1.9.0"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"js-yaml": "^4.1.0",
|
|
38
|
+
"@duffcloudservices/cms-core": "0.2.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/js-yaml": "^4.0.9",
|
|
42
|
+
"@types/markdown-it": "^14.1.0",
|
|
43
|
+
"@types/node": "^20.11.0",
|
|
44
|
+
"@vue/test-utils": "^2.4.0",
|
|
45
|
+
"markdown-it": "^14.0.0",
|
|
46
|
+
"tsup": "^8.0.0",
|
|
47
|
+
"typescript": "~5.6.3",
|
|
48
|
+
"vite": "^6.3.5",
|
|
49
|
+
"vitest": "^3.2.3",
|
|
50
|
+
"vue": "^3.5.16",
|
|
51
|
+
"@unhead/vue": "^2.0.5"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"vue",
|
|
55
|
+
"vitepress",
|
|
56
|
+
"cms",
|
|
57
|
+
"dcs",
|
|
58
|
+
"composables",
|
|
59
|
+
"duff-cloud-services"
|
|
60
|
+
],
|
|
61
|
+
"author": "Duff Cloud Services",
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "https://github.com/duffn/dcs"
|
|
66
|
+
},
|
|
67
|
+
"homepage": "https://portal.duffcloudservices.com",
|
|
68
|
+
"bugs": {
|
|
69
|
+
"url": "https://github.com/duffn/dcs/issues"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"build": "tsup",
|
|
76
|
+
"dev": "tsup --watch",
|
|
77
|
+
"test": "vitest run",
|
|
78
|
+
"test:watch": "vitest",
|
|
79
|
+
"type-check": "tsc --noEmit",
|
|
80
|
+
"lint": "eslint src --ext .ts"
|
|
81
|
+
}
|
|
82
|
+
}
|