@businessmaps/metaontology-nuxt 0.63.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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@businessmaps/metaontology-nuxt",
3
+ "version": "0.63.0",
4
+ "description": "Vue 3 and Nuxt 4 integration layer for @businessmaps/metaontology. Reactive composables for commit-sourced persistence, cloud sync, cross-tab coordination, and a reactive triple store.",
5
+ "author": "Business Maps",
6
+ "license": "Apache-2.0",
7
+ "keywords": [
8
+ "metaontology",
9
+ "nuxt",
10
+ "vue",
11
+ "domain-modeling",
12
+ "ddd",
13
+ "triple-store",
14
+ "indexeddb",
15
+ "sync",
16
+ "offline-first"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/Business-Maps/metaontology-nuxt.git"
21
+ },
22
+ "homepage": "https://github.com/Business-Maps/metaontology-nuxt#readme",
23
+ "bugs": {
24
+ "url": "https://github.com/Business-Maps/metaontology-nuxt/issues"
25
+ },
26
+ "type": "module",
27
+ "sideEffects": false,
28
+ "dependencies": {
29
+ "@businessmaps/metaontology": "*",
30
+ "@vueuse/core": "^14.0.0",
31
+ "idb": "^8.0.0",
32
+ "nanoid": "^5.0.0"
33
+ },
34
+ "peerDependencies": {
35
+ "nuxt": ">=4",
36
+ "vue": ">=3"
37
+ },
38
+ "exports": {
39
+ ".": "./index.ts",
40
+ "./nuxt.config": "./nuxt.config.ts",
41
+ "./composables/*": "./composables/*.ts"
42
+ },
43
+ "files": [
44
+ "index.ts",
45
+ "nuxt.config.ts",
46
+ "composables/**/*.ts",
47
+ "!**/__tests__/**"
48
+ ],
49
+ "scripts": {
50
+ "test": "vitest run",
51
+ "test:watch": "vitest"
52
+ },
53
+ "publishConfig": {
54
+ "access": "public"
55
+ }
56
+ }