@abraca/nuxt 0.1.0 → 0.1.1
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 +216 -56
- package/dist/module.json +1 -1
- package/dist/runtime/components/ADocumentTree.d.vue.ts +8 -43
- package/dist/runtime/components/ADocumentTree.vue +1239 -274
- package/dist/runtime/components/ADocumentTree.vue.d.ts +8 -43
- package/dist/runtime/components/AEditor.d.vue.ts +5 -0
- package/dist/runtime/components/AEditor.vue +85 -29
- package/dist/runtime/components/AEditor.vue.d.ts +5 -0
- package/dist/runtime/components/ANodePanel.vue +1 -1
- package/dist/runtime/composables/useConnectionStatus.d.ts +5 -1
- package/dist/runtime/composables/useConnectionStatus.js +36 -11
- package/dist/runtime/composables/useEditorSuggestions.js +10 -0
- package/dist/runtime/extensions/meta-field.d.ts +16 -0
- package/dist/runtime/extensions/meta-field.js +110 -0
- package/dist/runtime/extensions/views/MetaFieldView.d.vue.ts +4 -0
- package/dist/runtime/extensions/views/MetaFieldView.vue +489 -0
- package/dist/runtime/extensions/views/MetaFieldView.vue.d.ts +4 -0
- package/dist/runtime/plugin-abracadabra.client.js +55 -4
- package/dist/runtime/plugins/core.plugin.js +7 -3
- package/dist/runtime/server/plugins/abracadabra-service.d.ts +1 -1
- package/dist/runtime/server/plugins/abracadabra-service.js +3 -0
- package/dist/runtime/utils/docDragDrop.d.ts +13 -0
- package/dist/runtime/utils/docDragDrop.js +26 -0
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abraca/nuxt",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "First-class Nuxt module for the Abracadabra CRDT collaboration platform",
|
|
5
5
|
"repository": "abracadabra/abracadabra-nuxt",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,6 +25,17 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"prepack": "nuxt-module-build build",
|
|
30
|
+
"dev": "npm run dev:prepare && nuxt dev playground",
|
|
31
|
+
"dev:build": "nuxt build playground",
|
|
32
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
|
|
33
|
+
"release": "npm run lint && npm run prepack",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"test": "vitest run",
|
|
36
|
+
"test:watch": "vitest watch",
|
|
37
|
+
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
38
|
+
},
|
|
28
39
|
"dependencies": {
|
|
29
40
|
"@nuxt/kit": "^4.4.2",
|
|
30
41
|
"@vueuse/core": "^13.0.0",
|
|
@@ -87,14 +98,5 @@
|
|
|
87
98
|
"vue-tsc": "^3.2.5",
|
|
88
99
|
"yjs": "^13.6.27"
|
|
89
100
|
},
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
"dev:build": "nuxt build playground",
|
|
93
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
|
|
94
|
-
"release": "npm run lint && npm run prepack",
|
|
95
|
-
"lint": "eslint .",
|
|
96
|
-
"test": "vitest run",
|
|
97
|
-
"test:watch": "vitest watch",
|
|
98
|
-
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
+
"packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc"
|
|
102
|
+
}
|