ifc-reader-2 1.3.0 → 1.3.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/dist/base-types.d.ts +3 -0
- package/dist/ifc-reader.api.d.ts +2 -2
- package/dist/index.cjs +19 -19
- package/dist/index.js +33384 -33499
- package/dist/models/relationship-extractor/relationship-extractor.d.ts +1 -0
- package/package.json +38 -31
|
@@ -20,6 +20,7 @@ export declare class RelationshipExtractor {
|
|
|
20
20
|
/**
|
|
21
21
|
* Extract aggregation relationships (PART_OF)
|
|
22
22
|
* This includes spatial hierarchy: Project→Site→Building→Storey
|
|
23
|
+
* Also emits HAS_LEVEL (building→storey) and HAS_ROOM (storey→room) to match Revit format
|
|
23
24
|
*/
|
|
24
25
|
private extractAggregation;
|
|
25
26
|
/**
|
package/package.json
CHANGED
|
@@ -1,33 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
2
|
+
"name": "ifc-reader-2",
|
|
3
|
+
"version": "1.3.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.cjs",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"LICENSE",
|
|
11
|
+
"THIRD-PARTY-LICENSES.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"dev": "cd examples && npx vite",
|
|
15
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
16
|
+
"build": "npx tsc",
|
|
17
|
+
"bundle-vite": "npx vite build",
|
|
18
|
+
"deploy": "npm run bundle-vite && npm publish",
|
|
19
|
+
"lint": "biome check .",
|
|
20
|
+
"lint:fix": "biome check --write .",
|
|
21
|
+
"format": "biome format .",
|
|
22
|
+
"format:fix": "biome format . --write",
|
|
23
|
+
"check": "biome check .",
|
|
24
|
+
"check:fix": "biome check . --write"
|
|
25
|
+
},
|
|
26
|
+
"author": "",
|
|
27
|
+
"license": "ISC",
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/three": "^0.162.0",
|
|
30
|
+
"typescript": "^5.9.2",
|
|
31
|
+
"viral-viewer-2": "^6.6.3",
|
|
32
|
+
"vite": "^7.1.3",
|
|
33
|
+
"vite-plugin-dts": "^4.5.4",
|
|
34
|
+
"@biomejs/biome": "2.3.15"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"three": "^0.162.0",
|
|
38
|
+
"web-ifc": "^0.0.75"
|
|
39
|
+
}
|
|
33
40
|
}
|