@duffcloudservices/cms 0.1.1 → 0.1.3

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/package.json CHANGED
@@ -1,69 +1,72 @@
1
- {
2
- "name": "@duffcloudservices/cms",
3
- "version": "0.1.1",
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
- },
16
- "main": "./dist/index.js",
17
- "types": "./dist/index.d.ts",
18
- "files": [
19
- "dist"
20
- ],
21
- "scripts": {
22
- "build": "tsup",
23
- "dev": "tsup --watch",
24
- "test": "vitest run",
25
- "test:watch": "vitest",
26
- "type-check": "tsc --noEmit",
27
- "lint": "eslint src --ext .ts",
28
- "prepublishOnly": "pnpm run build"
29
- },
30
- "peerDependencies": {
31
- "vue": "^3.4.0",
32
- "@unhead/vue": "^1.9.0"
33
- },
34
- "dependencies": {
35
- "js-yaml": "^4.1.0"
36
- },
37
- "devDependencies": {
38
- "@types/js-yaml": "^4.0.9",
39
- "@types/node": "^20.11.0",
40
- "@vue/test-utils": "^2.4.0",
41
- "tsup": "^8.0.0",
42
- "typescript": "~5.6.3",
43
- "vite": "^6.3.5",
44
- "vitest": "^3.2.3",
45
- "vue": "^3.5.16",
46
- "@unhead/vue": "^2.0.5"
47
- },
48
- "keywords": [
49
- "vue",
50
- "vitepress",
51
- "cms",
52
- "dcs",
53
- "composables",
54
- "duff-cloud-services"
55
- ],
56
- "author": "Duff Cloud Services",
57
- "license": "MIT",
58
- "repository": {
59
- "type": "git",
60
- "url": "https://github.com/duffn/dcs"
61
- },
62
- "homepage": "https://portal.duffcloudservices.com",
63
- "bugs": {
64
- "url": "https://github.com/duffn/dcs/issues"
65
- },
66
- "engines": {
67
- "node": ">=18.0.0"
68
- }
69
- }
1
+ {
2
+ "name": "@duffcloudservices/cms",
3
+ "version": "0.1.3",
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
+ },
20
+ "main": "./dist/index.js",
21
+ "types": "./dist/index.d.ts",
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "peerDependencies": {
26
+ "vue": "^3.4.0",
27
+ "@unhead/vue": "^1.9.0"
28
+ },
29
+ "dependencies": {
30
+ "js-yaml": "^4.1.0"
31
+ },
32
+ "devDependencies": {
33
+ "@types/js-yaml": "^4.0.9",
34
+ "@types/node": "^20.11.0",
35
+ "@vue/test-utils": "^2.4.0",
36
+ "tsup": "^8.0.0",
37
+ "typescript": "~5.6.3",
38
+ "vite": "^6.3.5",
39
+ "vitest": "^3.2.3",
40
+ "vue": "^3.5.16",
41
+ "@unhead/vue": "^2.0.5"
42
+ },
43
+ "keywords": [
44
+ "vue",
45
+ "vitepress",
46
+ "cms",
47
+ "dcs",
48
+ "composables",
49
+ "duff-cloud-services"
50
+ ],
51
+ "author": "Duff Cloud Services",
52
+ "license": "MIT",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/duffn/dcs"
56
+ },
57
+ "homepage": "https://portal.duffcloudservices.com",
58
+ "bugs": {
59
+ "url": "https://github.com/duffn/dcs/issues"
60
+ },
61
+ "engines": {
62
+ "node": ">=18.0.0"
63
+ },
64
+ "scripts": {
65
+ "build": "tsup",
66
+ "dev": "tsup --watch",
67
+ "test": "vitest run",
68
+ "test:watch": "vitest",
69
+ "type-check": "tsc --noEmit",
70
+ "lint": "eslint src --ext .ts"
71
+ }
72
+ }