-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
88 lines (88 loc) · 2.49 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
85
86
87
88
{
"name": "@xeokit/xeokit-convert",
"version": "1.1.23",
"description": "JavaScript utilities to create .XKT files",
"main": "index.js",
"bin": "/convert2xkt.js",
"directories": {},
"scripts": {
"build": "npm run build-node && npm run build-browser && rollup --config rollup.config.convert2xkt.js && npm run docs",
"build-node": "webpack --mode=development --node-env=development --progress",
"build-browser": "rollup --config rollup.config.dist.js",
"docs": "rimraf ./docs/* && npx esdoc",
"publish": "npm publish --access public",
"changelog": "auto-changelog --commit-limit false --package --template changelog-template.hbs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xeokit/xeokit-convert.git"
},
"keywords": [
"xeolabs",
"xeokit",
"bim",
"opensource",
"ifc",
"webgl",
"xkt",
"gltf",
"glb",
"cityjson",
"laz",
"gis"
],
"author": "Lindsay Kay",
"license": "LICENSE",
"bugs": {
"url": "https://github.com/xeokit/xeokit-convert/issues"
},
"homepage": "https://github.com/xeokit/xeokit-convert#readme",
"dependencies": {
"@loaders.gl/core": "^3.2.6",
"@loaders.gl/gltf": "^3.2.6",
"@loaders.gl/images": "^3.2.6",
"@loaders.gl/json": "^3.2.6",
"@loaders.gl/las": "^3.2.6",
"@loaders.gl/obj": "^3.2.6",
"@loaders.gl/ply": "^3.2.6",
"@loaders.gl/polyfills": "^3.2.6",
"@loaders.gl/textures": "^3.2.6",
"@typeonly/validator": "^0.5.2",
"commander": "^11.0.0",
"core-js": "^3.22.5",
"fs": "0.0.1-security",
"pako": "^2.0.4",
"path": "^0.12.7",
"web-ifc": "0.0.40"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-external-helpers": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@xeokit/xeokit-sdk": "^2.3.0",
"auto-changelog": "^2.4.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"esdoc": "^1.1.0",
"esdoc-node": "^1.0.5",
"esdoc-standard-plugin": "^1.0.0",
"http-server": "^14.1.0",
"npm-upgrade": "^3.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-minify-es": "^1.1.1",
"typeonly": "^0.4.6",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"files": [
"/dist",
"/convert2xkt.js",
"/convert2xkt.conf.js"
]
}