-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "cesium-popup-vue3",
"version": "0.0.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cesium-plugin/cesium-popup-vue3.git"
},
"bugs": {
"url": "https://github.com/cesium-plugin/cesium-popup-vue3/issues"
},
"files": [
"packages",
"README.md",
"package.json"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint \"**/*.{html,vue,js}\" --fix",
"stylelint": "stylelint \"**/*.{html,vue,css,sass,scss}\" --fix",
"hooksinit": "git config core.hooksPath .git/hooks/ && rimraf -rf .git/hooks && npx simple-git-hooks",
"postinstall": "npm run hooksinit",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"cesium": "1.115.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@rushstack/eslint-patch": "^1.2.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-prettier": "^7.1.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.29.1",
"gh-pages": "^4.0.0",
"eslint-plugin-vue": "^9.15.1",
"iconv-lite": "^0.6.3",
"lint-staged": "^13.2.3",
"normalize.css": "^8.0.1",
"pinia": "^2.1.3",
"postcss-html": "^1.5.0",
"rimraf": "^5.0.5",
"sass": "^1.64.1",
"simple-git-hooks": "^2.9.0",
"stylelint": "^15.10.2",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^5.3.2",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.3.9",
"vite-plugin-cesium": "^1.2.22",
"vite-plugin-stylelint": "^4.3.0",
"vite-svg-loader": "^5.1.0",
"vue": "^3.3.4",
"vue-eslint-parser": "^9.3.1",
"vue-router": "^4.2.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{html,vue,js}": [
"eslint --fix"
],
"*.{html,vue,css,sass,scss}": [
"stylelint --fix"
]
}
}