@quatrain/backend-sqlite 1.0.13 → 1.0.15

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 +4 -0
  2. package/package.json +8 -3
package/README.md CHANGED
@@ -31,6 +31,10 @@ const sqliteAdapter = new SqliteAdapter({
31
31
  Backend.addAdapter('sqlite', sqliteAdapter, true)
32
32
  ```
33
33
 
34
+ ## Documentation
35
+
36
+ For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
37
+
34
38
  ## License
35
39
 
36
40
  AGPL-3.0-only
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/backend-sqlite",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "license": "AGPL-3.0-only",
5
5
  "description": "Backend adapter for SQLite",
6
6
  "main": "dist/index.js",
@@ -12,10 +12,15 @@
12
12
  "src/",
13
13
  "README.md"
14
14
  ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/Quatrain/Core.git",
18
+ "directory": "packages/backend-sqlite"
19
+ },
15
20
  "author": "Quatrain Développement SAS <developers@quatrain.com>",
16
21
  "dependencies": {
17
- "@quatrain/backend": "^1.1.34",
18
- "@quatrain/core": "^1.1.48",
22
+ "@quatrain/backend": "^1.1.36",
23
+ "@quatrain/core": "^1.1.50",
19
24
  "sqlite": "^5.1.1",
20
25
  "sqlite3": "^5.1.7"
21
26
  },