forked from sxguojf/three-tile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.21 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": "three-tile",
"private": false,
"version": "0.6.4",
"type": "module",
"files": [
"dist",
"images",
"docs"
],
"main": "dist/three-tile.umd.cjs",
"module": "dist/three-tile.js",
"types": "./dist/three-tile.es.d.ts",
"exports": {
".": {
"import": "./dist/three-tile.js",
"require": "./dist/three-tile.umd.cjs",
"types": "./dist/three-tile.es.d.ts"
}
},
"description": "A lightweight tile map using threejs",
"license": "GPL-3.0",
"author": {
"name": "GuoJiangfeng",
"email": "[email protected]"
},
"keywords": [
"three",
"gis",
"tile",
"map",
"3D",
"cesium"
],
"scripts": {
"dev": "vite --config vite.config.dev.ts",
"lib": "tsc && vite build --config vite.config.lib.ts",
"demo": "tsc && vite build --config vite.config.demo.ts",
"docs": "typedoc src --out ./docs",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.2.3",
"@types/offscreencanvas": "^2019.7.0",
"@types/three": "^0.165.0",
"jsdom": "^24.1.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
},
"dependencies": {
"three": "^0.165.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}