edinburgh 0.1.2 → 0.1.3

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 (1) hide show
  1. package/package.json +8 -8
package/package.json CHANGED
@@ -1,24 +1,25 @@
1
1
  {
2
2
  "name": "edinburgh",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "author": "Frank van Viegen",
5
5
  "devDependencies": {
6
6
  "@jest/globals": "^30.0.3",
7
7
  "@types/bun": "^1.2.16",
8
8
  "@types/node": "^22.10.6",
9
9
  "jest": "^30.0.5",
10
- "typescript": "^5.8.3"
10
+ "typescript": "^5.8.3",
11
+ "readme-tsdoc": "^1.1.4"
11
12
  },
12
13
  "exports": {
13
14
  ".": {
14
15
  "bun": "./src/edinburgh.ts",
15
- "types": "./build/edinburgh.d.ts",
16
- "default": "./build/edinburgh.js"
16
+ "types": "./build/src/edinburgh.d.ts",
17
+ "default": "./build/src/edinburgh.js"
17
18
  },
18
19
  "./bytes": {
19
20
  "bun": "./src/bytes.ts",
20
- "types": "./build/bytes.d.ts",
21
- "default": "./build/bytes.js"
21
+ "types": "./build/src/bytes.d.ts",
22
+ "default": "./build/src/bytes.js"
22
23
  }
23
24
  },
24
25
  "description": "Very fast object persistence for TypeScript, supporting optimistic transactions, on-demand reference loading, automatic back-references and indexes.",
@@ -50,7 +51,6 @@
50
51
  ],
51
52
  "type": "module",
52
53
  "dependencies": {
53
- "olmdb": "^0.2.17",
54
- "readme-tsdoc": "^1.1.4"
54
+ "olmdb": "^0.2.18"
55
55
  }
56
56
  }