@dxos/plugin-graph 0.8.4-main.d05539e30a → 0.8.4-main.d9fc60f731

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/plugin-graph",
3
- "version": "0.8.4-main.d05539e30a",
3
+ "version": "0.8.4-main.d9fc60f731",
4
4
  "description": "DXOS Surface plugin for constructing knowledge graphs",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -52,33 +52,35 @@
52
52
  "src"
53
53
  ],
54
54
  "dependencies": {
55
- "@dxos/app-framework": "0.8.4-main.d05539e30a",
56
- "@dxos/app-graph": "0.8.4-main.d05539e30a",
57
- "@dxos/app-toolkit": "0.8.4-main.d05539e30a",
58
- "@dxos/async": "0.8.4-main.d05539e30a",
59
- "@dxos/compute": "0.8.4-main.d05539e30a",
60
- "@dxos/debug": "0.8.4-main.d05539e30a",
61
- "@dxos/util": "0.8.4-main.d05539e30a",
62
- "@dxos/operation": "0.8.4-main.d05539e30a",
63
- "@dxos/effect": "0.8.4-main.d05539e30a"
55
+ "@dxos/app-graph": "0.8.4-main.d9fc60f731",
56
+ "@dxos/app-toolkit": "0.8.4-main.d9fc60f731",
57
+ "@dxos/operation": "0.8.4-main.d9fc60f731",
58
+ "@dxos/compute": "0.8.4-main.d9fc60f731",
59
+ "@dxos/keys": "0.8.4-main.d9fc60f731",
60
+ "@dxos/util": "0.8.4-main.d9fc60f731",
61
+ "@dxos/effect": "0.8.4-main.d9fc60f731",
62
+ "@dxos/app-framework": "0.8.4-main.d9fc60f731"
64
63
  },
65
64
  "devDependencies": {
66
65
  "@effect-atom/atom-react": "^0.5.0",
67
- "@effect/platform": "0.94.4",
66
+ "@effect/platform": "0.96.1",
68
67
  "@types/react": "~19.2.7",
69
68
  "@types/react-dom": "~19.2.3",
70
- "effect": "3.20.0",
69
+ "effect": "3.21.2",
71
70
  "react": "~19.2.3",
72
71
  "react-dom": "~19.2.3",
73
- "vite": "^8.0.13",
74
- "@dxos/react-client": "0.8.4-main.d05539e30a",
75
- "@dxos/storybook-utils": "0.8.4-main.d05539e30a"
72
+ "vite": "^8.0.14",
73
+ "@dxos/react-client": "0.8.4-main.d9fc60f731",
74
+ "@dxos/storybook-utils": "0.8.4-main.d9fc60f731"
76
75
  },
77
76
  "peerDependencies": {
78
77
  "@effect-atom/atom-react": "^0.5.0",
79
- "@effect/platform": "0.94.4",
80
- "effect": "3.20.0",
78
+ "@effect/platform": "0.96.1",
79
+ "effect": "3.21.2",
81
80
  "react": "~19.2.3",
82
81
  "react-dom": "~19.2.3"
82
+ },
83
+ "publishConfig": {
84
+ "access": "public"
83
85
  }
84
86
  }
package/src/meta.ts CHANGED
@@ -2,11 +2,12 @@
2
2
  // Copyright 2023 DXOS.org
3
3
  //
4
4
 
5
- import { type Plugin } from '@dxos/app-framework';
5
+ import { Plugin } from '@dxos/app-framework';
6
+ import { DXN } from '@dxos/keys';
6
7
  import { trim } from '@dxos/util';
7
8
 
8
- export const meta: Plugin.Meta = {
9
- id: 'org.dxos.plugin.graph',
9
+ export const meta = Plugin.makeMeta({
10
+ key: DXN.make('org.dxos.plugin.graph'),
10
11
  name: 'Graph',
11
12
  author: 'DXOS',
12
13
  description: trim`
@@ -14,4 +15,4 @@ export const meta: Plugin.Meta = {
14
15
  Build knowledge graphs and explore complex data relationships.
15
16
  `,
16
17
  tags: ['system'],
17
- };
18
+ });
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/meta.ts"],
4
- "sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: Plugin.Meta = {\n id: 'org.dxos.plugin.graph',\n name: 'Graph',\n author: 'DXOS',\n description: trim`\n Graph database layer providing relationship modeling and queries for workspace objects.\n Build knowledge graphs and explore complex data relationships.\n `,\n tags: ['system'],\n};\n"],
5
- "mappings": ";AAKA,SAASA,YAAY;AAEd,IAAMC,OAAoB;EAC/BC,IAAI;EACJC,MAAM;EACNC,QAAQ;EACRC,aAAaL;;;;EAIbM,MAAM;IAAC;;AACT;",
6
- "names": ["trim", "meta", "id", "name", "author", "description", "tags"]
7
- }