forked from ThatOpen/engine_fragment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 KB
/
package.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bim-fragment",
"version": "1.3.1",
"description": "3D BIM Geometry API",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "tsc && yarn build-examples",
"build-examples": "rollup -c resources/rollup.config.mjs",
"publish-repo": "tsc && cpy package.json dist && cd dist && npm publish",
"create-flatbuffers": "cd src/flatbuffers && flatc.exe --ts fragment.fbs",
"create-stream-flatbuffers": "cd src/flatbuffers && flatc.exe --ts streamed-geometry.fbs",
"regen-json": "cd src/flatbuffers && flatc.exe --json --raw-binary fragment.fbs -- model.frag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ifcjs/fragment.git"
},
"keywords": [
"ifc",
"geometry",
"threejs",
"bim",
"3d"
],
"author": "agviegas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ifcjs/fragment/issues"
},
"homepage": "https://github.com/ifcjs/fragment",
"dependencies": {
"flatbuffers": "^23.3.3",
"three-mesh-bvh": "0.6.0"
},
"peerDependencies": {
"three": "0.152.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.0",
"@rollup/plugin-node-resolve": "15.1.0",
"@types/jest": "27.0.0",
"@types/node": "^14.14.31",
"@types/three": "0.152.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"rollup": "^3.2.3",
"three": "0.152.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"browser": {
"crypto": false,
"fs": false,
"path": false
}
}