-
Notifications
You must be signed in to change notification settings - Fork 291
/
package.json
84 lines (84 loc) · 2.09 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
83
84
{
"name": "@xeokit/xeokit-sdk",
"version": "2.6.56",
"description": "Web Programming Toolkit for 3D/2D BIM and AEC Graphics",
"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": "git+https://github.com/xeokit/xeokit-sdk.git"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false
},
"keywords": [
"webgl",
"webgl2",
"javascript",
"xeokit",
"xeolabs",
"creoox",
"ifc",
"bcf",
"bim",
"gis",
"cad",
"buildingsmart",
"openbim",
"opensource",
"solidworks",
"gltf",
"3dxml",
"obj",
"stl",
"laz",
"las",
"pointcloud",
"3d-viewer"
],
"author": "Lindsay Kay",
"license": "See LICENSE.txt",
"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"
]
}