-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 950 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 950 Bytes
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
{
"name": "czml-editor",
"homepage": "https://EndPointCorp.github.io/czml-editor/",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"clean": "rm -rf node_modules/* && rm yarn.lock",
"update-img-selector": "yarn cache clean && yarn remove cesium-img-selector && yarn add file:3dparty/cesium-img-selector",
"predeploy": "yarn build",
"deploy": "gh-pages --nojekyll -d dist"
},
"dependencies": {
"cesium": "^1.126.0",
"cesium-img-selector": "file:3dparty/cesium-img-selector",
"html-format": "^1.1.7",
"preact": "^10.25.4"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.1",
"gh-pages": "^6.3.0",
"json-schema-to-typescript": "^15.0.4",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "~5.7.2",
"vite": "^6.1.0",
"vite-plugin-static-copy": "^2.2.0"
}
}