@kvs/env 2.1.3 → 2.1.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.
package/lib/share.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { JsonValue } from "@kvs/storage";
2
2
  import { KVS, KVSOptions } from "@kvs/types";
3
- export declare type KvsEnvStorageSchema = {
3
+ export type KvsEnvStorageSchema = {
4
4
  [index: string]: JsonValue;
5
5
  };
6
- export declare type KvsEnvStorage<Schema extends KvsEnvStorageSchema> = KVS<Schema>;
7
- export declare type KvsEnvStorageOptions<Schema extends KvsEnvStorageSchema> = KVSOptions<Schema>;
6
+ export type KvsEnvStorage<Schema extends KvsEnvStorageSchema> = KVS<Schema>;
7
+ export type KvsEnvStorageOptions<Schema extends KvsEnvStorageSchema> = KVSOptions<Schema>;
package/module/share.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { JsonValue } from "@kvs/storage";
2
2
  import { KVS, KVSOptions } from "@kvs/types";
3
- export declare type KvsEnvStorageSchema = {
3
+ export type KvsEnvStorageSchema = {
4
4
  [index: string]: JsonValue;
5
5
  };
6
- export declare type KvsEnvStorage<Schema extends KvsEnvStorageSchema> = KVS<Schema>;
7
- export declare type KvsEnvStorageOptions<Schema extends KvsEnvStorageSchema> = KVSOptions<Schema>;
6
+ export type KvsEnvStorage<Schema extends KvsEnvStorageSchema> = KVS<Schema>;
7
+ export type KvsEnvStorageOptions<Schema extends KvsEnvStorageSchema> = KVSOptions<Schema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kvs/env",
3
- "version": "2.1.3",
3
+ "version": "2.1.5",
4
4
  "description": "Universal Storage for KVS.",
5
5
  "keywords": [
6
6
  "kvs",
@@ -46,21 +46,20 @@
46
46
  "trailingComma": "none"
47
47
  },
48
48
  "dependencies": {
49
- "@kvs/indexeddb": "^2.1.3",
50
- "@kvs/node-localstorage": "^2.1.3"
49
+ "@kvs/indexeddb": "^2.1.4",
50
+ "@kvs/node-localstorage": "^2.1.5"
51
51
  },
52
52
  "devDependencies": {
53
- "@jsdevtools/karma-config": "^3.1.7",
54
- "@types/mocha": "^9.0.0",
55
- "@types/node": "^16.9.1",
56
- "mocha": "^9.1.1",
57
- "prettier": "^2.0.5",
58
- "rimraf": "^3.0.2",
59
- "ts-loader": "^8.2.0",
60
- "typescript": "^4.2.4"
53
+ "@types/mocha": "^10.0.1",
54
+ "@types/node": "^20.4.2",
55
+ "mocha": "^10.2.0",
56
+ "prettier": "^3.0.0",
57
+ "rimraf": "^5.0.1",
58
+ "ts-loader": "^9.4.4",
59
+ "typescript": "^5.1.6"
61
60
  },
62
61
  "publishConfig": {
63
62
  "access": "public"
64
63
  },
65
- "gitHead": "85b5649aa83c332a644a356c210037cadd073943"
64
+ "gitHead": "bd85ca1e2b31c32bcf52f780727f971db115aab7"
66
65
  }