@automerge/react 2.6.0-subduction.3 → 2.6.0-subduction.30

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.
@@ -3,3 +3,4 @@ export { BroadcastChannelNetworkAdapter } from "@automerge/automerge-repo-networ
3
3
  export { MessageChannelNetworkAdapter } from "@automerge/automerge-repo-network-messagechannel";
4
4
  export { WebSocketClientAdapter } from "@automerge/automerge-repo-network-websocket";
5
5
  export { IndexedDBStorageAdapter } from "@automerge/automerge-repo-storage-indexeddb";
6
+ //# sourceMappingURL=default-exports.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"default-exports.js","sourceRoot":"","sources":["../src/default-exports.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAA;AAErD,OAAO,EAAE,8BAA8B,EAAE,MAAM,oDAAoD,CAAA;AACnG,OAAO,EAAE,4BAA4B,EAAE,MAAM,kDAAkD,CAAA;AAC/F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAA;AACpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,6CAA6C,CAAA"}
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "@automerge/automerge-repo";
2
2
  export * from "./default-exports.js";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA;AACzC,cAAc,sBAAsB,CAAA"}
package/dist/slim.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from "@automerge/automerge-repo/slim";
2
2
  export * from "./default-exports.js";
3
+ //# sourceMappingURL=slim.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"slim.js","sourceRoot":"","sources":["../src/slim.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAA;AAC9C,cAAc,sBAAsB,CAAA"}
package/package.json CHANGED
@@ -1,60 +1,49 @@
1
1
  {
2
2
  "name": "@automerge/react",
3
- "version": "2.6.0-subduction.3",
3
+ "version": "2.6.0-subduction.30",
4
4
  "description": "A quick-import React package for Automerge Repo",
5
- "repository": "https://github.com/automerge/automerge-repo/tree/master/packages/automerge-react",
5
+ "repository": "https://github.com/automerge/automerge-repo/tree/main/packages/automerge-react",
6
6
  "author": "Peter van Hardenberg <pvh@pvh.ca>",
7
7
  "license": "MIT",
8
8
  "type": "module",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/index.d.ts",
11
11
  "dependencies": {
12
- "react": "^18.0.0",
13
- "@automerge/automerge-repo": "2.6.0-subduction.3",
14
- "@automerge/automerge-repo-network-broadcastchannel": "2.6.0-subduction.3",
15
- "@automerge/automerge-repo-network-messagechannel": "2.6.0-subduction.3",
16
- "@automerge/automerge-repo-network-websocket": "2.6.0-subduction.3",
17
- "@automerge/automerge-repo-storage-indexeddb": "2.6.0-subduction.3",
18
- "@automerge/automerge-repo-react-hooks": "2.6.0-subduction.3"
12
+ "@automerge/automerge-repo": "2.6.0-subduction.30",
13
+ "@automerge/automerge-repo-network-websocket": "2.6.0-subduction.30",
14
+ "@automerge/automerge-repo-storage-indexeddb": "2.6.0-subduction.30",
15
+ "@automerge/automerge-repo-react-hooks": "2.6.0-subduction.30",
16
+ "@automerge/automerge-repo-network-messagechannel": "2.6.0-subduction.30",
17
+ "@automerge/automerge-repo-network-broadcastchannel": "2.6.0-subduction.30"
19
18
  },
20
19
  "peerDependencies": {
21
20
  "react": "^18.0.0 || ^19.0.0"
22
21
  },
23
22
  "devDependencies": {
24
- "@types/react": "^18.0.0",
25
- "typescript": "^5.0.0",
26
- "vitest": "^3.2.4"
23
+ "@types/react": "^19.2.15",
24
+ "react": "^19.2.6",
25
+ "typescript": "^6.0.3",
26
+ "vitest": "^4.1.7"
27
27
  },
28
28
  "exports": {
29
29
  ".": "./dist/index.js",
30
30
  "./slim": "./dist/slim.js"
31
31
  },
32
- "watch": {
33
- "build": {
34
- "patterns": "./src/**/*",
35
- "extensions": [
36
- ".ts"
37
- ]
38
- },
39
- "test": {
40
- "quiet": true,
41
- "patterns": [
42
- "./src/**/*",
43
- "./test/**/*"
44
- ],
45
- "extensions": [
46
- ".ts"
47
- ]
48
- }
49
- },
50
32
  "publishConfig": {
51
33
  "access": "public",
52
34
  "tag": "subduction"
53
35
  },
36
+ "engines": {
37
+ "node": ">=22.13"
38
+ },
39
+ "files": [
40
+ "dist",
41
+ "src"
42
+ ],
54
43
  "scripts": {
55
44
  "build": "tsc",
56
- "watch": "npm-watch build",
45
+ "watch": "tsc --watch",
57
46
  "test": "vitest",
58
- "test:watch": "npm-watch test"
47
+ "test:watch": "vitest --watch"
59
48
  }
60
49
  }
package/tsconfig.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "jsx": "react",
5
- "module": "NodeNext",
6
- "moduleResolution": "nodenext",
7
- "declaration": true,
8
- "declarationMap": true,
9
- "outDir": "./dist",
10
- "esModuleInterop": true,
11
- "forceConsistentCasingInFileNames": true,
12
- "strict": true,
13
- "strictNullChecks": true,
14
- "skipLibCheck": true
15
- },
16
- "include": ["src/**/*.ts"],
17
- "exclude": ["dist"]
18
- }
package/vitest.config.ts DELETED
@@ -1,4 +0,0 @@
1
- import { defineConfig, mergeConfig } from "vitest/config"
2
- import rootConfig from "../../vitest.config"
3
-
4
- export default mergeConfig(rootConfig, defineConfig({}))