-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "cesium-gz-parser",
"version": "1.0.4",
"description": "Add 3dtiles to parser GZip",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "http://192.168.0.32:8081/repository/npm-hosted/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "npm run build",
"install-peers": "npm-install-peers"
},
"keywords": [
"cesium",
"3dtiles",
"gzip"
],
"author": "jak <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.1",
"@types/pako": "^2.0.3",
"ajax-hook": "^3.0.3",
"cesium": "^1.111.0",
"dayjs": "^1.11.10",
"localforage": "^1.10.0",
"pako": "^2.1.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"cesium": ">1.108.0"
},
"dependencies": {
"@types/localforage": "^0.0.34"
},
"repository": {
"type": "git",
"url": "https://github.com/jak983464779/cesium-gz-parser"
},
"homepage": "https://github.com/jak983464779/cesium-gz-parser",
"bugs": "https://github.com/jak983464779/cesium-gz-parser/issues"
}