-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.24 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": "cesiumjs-vite-example",
"version": "1.0.0",
"description": "The minimal recommended setup for an app using Cesium with Vite.",
"homepage": "https://cesium.com/platform/cesiumjs/",
"license": "Apache-2.0",
"author": {
"name": "Cesium GS, Inc.",
"url": "https://cesium.com"
},
"keywords": [
"cesium",
"CesiumJS",
"vite",
"example"
],
"repository": {
"type": "git",
"url": "https://github.com/CesiumGS/cesium-vite-example.git"
},
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint \"./**/*.js\" \"./**/*.html\" --cache --quiet",
"prettier": "prettier --write --no-config \"**/*\"",
"prettier-check": "prettier --check --no-config \"**/*\""
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-cesium": "^10.0.2",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-html": "^7.1.0",
"husky": "^8.0.3",
"prettier": "^3.2.4",
"vite": "^5.0.8",
"vite-plugin-static-copy": "^1.0.0"
},
"dependencies": {
"cesium": "^1.114.0"
},
"lint-staged": {
"*.{js,html}": [
"eslint --cache --quiet",
"prettier --write --no-config"
]
}
}