@quereus/store 0.3.7 → 0.3.9

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.
@@ -25,7 +25,7 @@ export interface StoreModuleConfig extends BaseModuleConfig {
25
25
  *
26
26
  * Usage:
27
27
  * ```typescript
28
- * import { StoreModule } from '@quereus/plugin-store';
28
+ * import { StoreModule } from '@quereus/store';
29
29
  * import { createLevelDBProvider } from '@quereus/store-leveldb';
30
30
  *
31
31
  * const provider = createLevelDBProvider({ basePath: './data' });
@@ -17,7 +17,7 @@ import { generateTableDDL } from './ddl-generator.js';
17
17
  *
18
18
  * Usage:
19
19
  * ```typescript
20
- * import { StoreModule } from '@quereus/plugin-store';
20
+ * import { StoreModule } from '@quereus/store';
21
21
  * import { createLevelDBProvider } from '@quereus/store-leveldb';
22
22
  *
23
23
  * const provider = createLevelDBProvider({ basePath: './data' });
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "@quereus/store",
3
- "version": "0.3.7",
4
- "type": "module",
5
- "description": "Abstract key-value storage module for Quereus",
6
- "keywords": [
7
- "quereus",
8
- "sql",
9
- "database",
10
- "storage",
11
- "kv-store",
12
- "persistent",
13
- "virtual-table",
14
- "abstract"
15
- ],
16
- "publisher": "Got Choices Foundation",
17
- "repository": {
18
- "type": "git",
19
- "url": "https://github.com/gotchoices/quereus.git",
20
- "directory": "packages/quereus-store"
21
- },
22
- "license": "MIT",
23
- "main": "dist/src/index.js",
24
- "types": "./dist/src/index.d.ts",
25
- "files": [
26
- "dist",
27
- "!**/*.tsbuildinfo"
28
- ],
29
- "exports": {
30
- ".": {
31
- "types": "./dist/src/index.d.ts",
32
- "import": "./dist/src/index.js"
33
- }
34
- },
35
- "scripts": {
36
- "clean": "rimraf dist",
37
- "build": "tsc",
38
- "typecheck": "tsc --noEmit",
39
- "test": "cd ../.. && node --import ./packages/quereus-store/register.mjs node_modules/mocha/bin/mocha.js \"packages/quereus-store/test/**/*.spec.ts\" --colors",
40
- "test:single": "cd ../.. && node --import ./packages/quereus-store/register.mjs node_modules/mocha/bin/mocha.js --bail"
41
- },
42
- "peerDependencies": {
43
- "@quereus/quereus": "*"
44
- },
45
- "devDependencies": {
46
- "@quereus/quereus": "*",
47
- "@types/mocha": "^10.0.10",
48
- "@types/node": "^22.15.29",
49
- "chai": "^5.2.0",
50
- "mocha": "^11.5.0",
51
- "rimraf": "^6.1.2",
52
- "ts-node": "^10.9.2",
53
- "typescript": "^5.8.3"
54
- }
55
- }
1
+ {
2
+ "name": "@quereus/store",
3
+ "version": "0.3.9",
4
+ "type": "module",
5
+ "description": "Abstract key-value storage module for Quereus",
6
+ "keywords": [
7
+ "quereus",
8
+ "sql",
9
+ "database",
10
+ "storage",
11
+ "kv-store",
12
+ "persistent",
13
+ "virtual-table",
14
+ "abstract"
15
+ ],
16
+ "publisher": "Got Choices Foundation",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/gotchoices/quereus.git",
20
+ "directory": "packages/quereus-store"
21
+ },
22
+ "license": "MIT",
23
+ "main": "dist/src/index.js",
24
+ "types": "./dist/src/index.d.ts",
25
+ "files": [
26
+ "dist",
27
+ "!**/*.tsbuildinfo"
28
+ ],
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/src/index.d.ts",
32
+ "import": "./dist/src/index.js"
33
+ }
34
+ },
35
+ "scripts": {
36
+ "clean": "rimraf dist",
37
+ "build": "tsc",
38
+ "typecheck": "tsc --noEmit",
39
+ "test": "cd ../.. && node --import ./packages/quereus-store/register.mjs node_modules/mocha/bin/mocha.js \"packages/quereus-store/test/**/*.spec.ts\" --colors",
40
+ "test:single": "cd ../.. && node --import ./packages/quereus-store/register.mjs node_modules/mocha/bin/mocha.js --bail"
41
+ },
42
+ "peerDependencies": {
43
+ "@quereus/quereus": "^0.8.8"
44
+ },
45
+ "devDependencies": {
46
+ "@quereus/quereus": "*",
47
+ "@types/mocha": "^10.0.10",
48
+ "@types/node": "^22.15.29",
49
+ "chai": "^5.2.0",
50
+ "mocha": "^11.5.0",
51
+ "rimraf": "^6.1.2",
52
+ "ts-node": "^10.9.2",
53
+ "typescript": "^5.8.3"
54
+ }
55
+ }