-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathpackage.json
82 lines (81 loc) · 2.24 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@xeokit/xeokit-sdk",
"version": "2.6.65",
"description": "3D BIM IFC Viewer SDK for AEC engineering applications. Open Source JavaScript Toolkit based on pure WebGL for top performance, real-world coordinates and full double precision",
"module": "./dist/xeokit-sdk.es.js",
"main": "./dist/xeokit-sdk.cjs.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "rollup --config rollup.config.js; rollup --config rollup.minified.config.js",
"dev-build": "rollup --config rollup.dev.config.js",
"docs": "rm -Rf ./docs/*; ./node_modules/.bin/esdoc",
"typedocs": "rm -Rf ./docs/*; typedoc --tsconfig tsconfig.json",
"publish": "npm publish --access public",
"changelog": "git fetch; auto-changelog --commit-limit false --package --template changelog-template.hbs"
},
"repository": {
"type": "git",
"url": "https://github.com/xeokit/xeokit-sdk.git"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"keywords": [
"ifc-viewer",
"bim-viewer",
"3d-web-viewer",
"point-cloud-viewer",
"online-viewer",
"web-gl",
"viewer-sdk",
"3d-viewers",
"bim",
"ifc",
"geometry",
"point-cloud",
"las-viewer",
"laz-viewer",
"webgl-viewer",
"javascript-viewer",
"buildingsmart",
"geospatial",
"gis",
"3d-tiles"
],
"author": "Lindsay Kay",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/xeokit/xeokit-sdk/issues"
},
"homepage": "https://xeokit.io",
"dependencies": {
"@loaders.gl/core": "^3.2.6",
"@loaders.gl/gltf": "^3.2.6",
"@loaders.gl/las": "^3.2.6",
"html2canvas": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.2.1",
"esdoc": "^1.1.0",
"esdoc-custom-theme": "^1.4.2",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.13.0",
"parse5": "^7.0.0",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2",
"typedoc": "^0.22.15",
"auto-changelog": "^2.4.0"
},
"files": [
"/src",
"/dist",
"/types"
]
}