@ifc-lite/merge 0.1.0

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": "@ifc-lite/merge",
3
+ "version": "0.1.0",
4
+ "description": "Three-way merge engine for IFCX layers — MergePlan with auto-merged ops and explicit conflict records, merge-layer emission, rebase, and revert.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "dependencies": {
15
+ "@ifc-lite/ifcx": "^2.2.3",
16
+ "@ifc-lite/diff": "^0.3.2"
17
+ },
18
+ "devDependencies": {
19
+ "typescript": "^6.0.3",
20
+ "vitest": "^4.1.0"
21
+ },
22
+ "license": "MPL-2.0",
23
+ "author": "Louis True",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/LTplus-AG/ifc-lite.git",
27
+ "directory": "packages/merge"
28
+ },
29
+ "homepage": "https://ltplus-ag.github.io/ifc-lite/",
30
+ "bugs": "https://github.com/LTplus-AG/ifc-lite/issues",
31
+ "keywords": [
32
+ "ifc",
33
+ "ifcx",
34
+ "bim",
35
+ "merge",
36
+ "three-way",
37
+ "layers",
38
+ "aec"
39
+ ],
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "README.md"
46
+ ],
47
+ "scripts": {
48
+ "build": "pnpm exec tsc",
49
+ "dev": "pnpm exec tsc --watch",
50
+ "test": "vitest run",
51
+ "bench": "node --max-old-space-size=8192 scripts/bench-three-way.mjs"
52
+ }
53
+ }