@web_of_trust/adapter-automerge 0.1.2

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/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@web_of_trust/adapter-automerge",
3
+ "version": "0.1.2",
4
+ "description": "Automerge CRDT adapter for Web of Trust — Rust/WASM-based replication and personal document management",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/antontranelis/web-of-trust.git",
8
+ "directory": "packages/adapter-automerge"
9
+ },
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "license": "MIT",
14
+ "type": "module",
15
+ "main": "./dist/index.js",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "scripts": {
28
+ "build": "vite build",
29
+ "dev": "vite build --watch",
30
+ "test": "vitest run",
31
+ "test:watch": "vitest",
32
+ "typecheck": "tsc --noEmit"
33
+ },
34
+ "dependencies": {
35
+ "@automerge/automerge": "^3.2.3",
36
+ "@automerge/automerge-repo": "^2.5.3",
37
+ "@automerge/automerge-repo-storage-indexeddb": "^2.5.3"
38
+ },
39
+ "peerDependencies": {
40
+ "@web_of_trust/core": "workspace:*"
41
+ },
42
+ "devDependencies": {
43
+ "@web_of_trust/core": "workspace:*",
44
+ "fake-indexeddb": "^6.2.5",
45
+ "happy-dom": "^20.5.0",
46
+ "typescript": "~5.7.2",
47
+ "vite": "^6.0.7",
48
+ "vite-plugin-dts": "^4.4.0",
49
+ "vite-plugin-top-level-await": "^1.6.0",
50
+ "vite-plugin-wasm": "^3.5.0",
51
+ "vitest": "^4.1.0"
52
+ }
53
+ }