-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.03 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
{
"name": "@dvgis/vite-plugin-dc",
"version": "4.0.1",
"repository": "https://github.com/dvgis/vite-plugin-dc.git",
"author": "Caven Chen <[email protected]>",
"license": "Apache 2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"prepublishOnly": "npm run build"
},
"keywords": [
"vite",
"vite-plugin",
"3D",
"webGL",
"map",
"Cesium",
"dc-sdk"
],
"dependencies": {
"fs-extra": "^11.2.0",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.5",
"@types/serve-static": "^1.15.7",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vite": "^5.4.10"
},
"peerDependencies": {
"@dvgis/dc-sdk": "^4.0.0"
},
"files": [
"dist"
]
}