-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.11 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
51
{
"name": "copc-cesium",
"version": "0.1.0",
"type": "module",
"description": "COPC Point Cloud Provider for CesiumJS - Stream Cloud Optimized Point Cloud files directly into CesiumJS without pre-tiling",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"API.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "vite",
"test": "jest"
},
"keywords": [
"copc",
"cesium",
"point-cloud",
"3d-tiles",
"gis",
"webgl"
],
"author": "Seongjun Choi",
"license": "MIT",
"peerDependencies": {
"cesium": "^1.115.0"
},
"dependencies": {
"copc": "^0.0.8",
"laz-perf": "^0.0.7",
"proj4": "^2.9.2"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^20.11.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.9.6",
"tslib": "^2.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"jest": "^29.7.0"
}
}