This repository was archived by the owner on Nov 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@parametricos/bcf-js",
"description": "BCF.js is a BIM Collaboration Format (BCF) reader & parser.",
"version": "0.3.2",
"type": "commonjs",
"keywords": [
"bim",
"ifc",
"bcf",
"parser",
"loader",
"reader",
"writer"
],
"bugs": {
"url": "https://github.com/Parametricos/BCF.js/issues"
},
"license": "MPL-2.0",
"author": {
"name": "Harry Collin",
"email": "harry@studio3dx.com"
},
"exports": {
".": "./dist/index.js",
"./2.1": "./dist/2.1/index.js"
},
"homepage": "https://github.com/Parametricos/BCF.js#readme",
"repository": "https://github.com/Parametricos/BCF.js",
"scripts": {
"build": "tsc",
"example-reader": "node test/BasicReadExample.js",
"example-writer": "node test/BasicWriteExample.js",
"test": "jest --watchAll --verbose --silent=false",
"build-n-test": "tsc && jest --watchAll --verbose --silent=false"
},
"devDependencies": {
"@babel/preset-env": "7.22.9",
"@babel/preset-typescript": "7.22.5",
"@types/node": "^14.14.13",
"dts-gen": "^0.6.0",
"jest": "30.0.4",
"json-cycle": "^1.3.0",
"typescript": "5.1.6"
},
"dependencies": {
"fast-xml-parser": "4.2.7",
"fflate": "^0.8.2"
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}