@exogee/graphweaver-mikroorm 0.2.3 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +13 -3
package/README.md CHANGED
@@ -1,3 +1,10 @@
1
1
  # `@exogee/graphweaver-mikroorm`
2
2
 
3
3
  MikroORM adapter package for Graphweaver
4
+
5
+ ## Documentation
6
+
7
+ Comprehensive documentation and usage examples can be found on our [Docs Site](https://graphweaver.com/docs). It covers installation instructions, detailed API documentation, and guides to help you get started with Graphweaver.
8
+
9
+ ## Graphweaver CLI `graphweaver`
10
+ The Graphweaver Command Line Interface (CLI) tool enables you to set up and manage Graphweaver using commands in your command-line shell. Check the `graphweaver` npm package [here.](https://www.npmjs.com/package/graphweaver)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exogee/graphweaver-mikroorm",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "MikroORM backend for @exogee/graphweaver",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
@@ -19,8 +19,8 @@
19
19
  "graphql": "16.6.0",
20
20
  "reflect-metadata": "0.1.13",
21
21
  "pluralize": "8.0.0",
22
- "@exogee/graphweaver": "0.2.3",
23
- "@exogee/logger": "0.2.3"
22
+ "@exogee/graphweaver": "0.2.5",
23
+ "@exogee/logger": "0.2.5"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@mikro-orm/core": "5.7.14",
@@ -44,6 +44,16 @@
44
44
  "@mikro-orm/core": "5.7.14",
45
45
  "@mikro-orm/knex": "5.7.14"
46
46
  },
47
+ "keywords": [
48
+ "graphql",
49
+ "gql",
50
+ "headless",
51
+ "cms",
52
+ "postgres",
53
+ "postgresql",
54
+ "mysql",
55
+ "sqlite"
56
+ ],
47
57
  "scripts": {
48
58
  "build": "npm run build:js && npm run build:types",
49
59
  "build:js": "esbuild --outdir=lib --platform=node --format=cjs --sourcemap=linked `find src \\( -name '*.ts' \\)`",