@wwsy/cesium 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -0
- package/dist/assets/index.css +1 -0
- package/dist/index.js +196542 -0
- package/dist/index.umd.cjs +16507 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wwsy/cesium",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "WWSY的Cesium插件库",
|
|
5
|
+
"author": "Answer™",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"private": false,
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"wwsy",
|
|
14
|
+
"cesium",
|
|
15
|
+
"plugin",
|
|
16
|
+
"vue"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"main": "./dist/index.umd.cjs",
|
|
22
|
+
"module": "./dist/index.js",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./dist/index.js",
|
|
26
|
+
"require": "./dist/index.umd.cjs"
|
|
27
|
+
},
|
|
28
|
+
"./assets/*": "./dist/assets/*"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"serve:examples": "vite",
|
|
35
|
+
"build:examples": "vite build",
|
|
36
|
+
"build:lib": "vite build --config vite.config.lib.ts",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"type-check": "vue-tsc --build",
|
|
39
|
+
"lint": "eslint . --fix --cache",
|
|
40
|
+
"format": "prettier --write --experimental-cli src/"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"cesium": "^1.134.1",
|
|
44
|
+
"vite-plugin-cesium": "^1.2.23",
|
|
45
|
+
"vue": "^3.5.25",
|
|
46
|
+
"vue-router": "^4.6.3"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@tsconfig/node24": "^24.0.3",
|
|
50
|
+
"@types/node": "^24.10.1",
|
|
51
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
52
|
+
"@vue/eslint-config-prettier": "^10.2.0",
|
|
53
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
54
|
+
"@vue/tsconfig": "^0.8.1",
|
|
55
|
+
"eslint": "^9.39.1",
|
|
56
|
+
"eslint-plugin-vue": "~10.5.1",
|
|
57
|
+
"jiti": "^2.6.1",
|
|
58
|
+
"npm-run-all2": "^8.0.4",
|
|
59
|
+
"prettier": "3.6.2",
|
|
60
|
+
"sass": "^1.97.1",
|
|
61
|
+
"typescript": "~5.9.0",
|
|
62
|
+
"vite": "^7.2.4",
|
|
63
|
+
"vite-plugin-cesium-build": "^0.7.2",
|
|
64
|
+
"vite-plugin-vue-devtools": "^8.0.5",
|
|
65
|
+
"vue-tsc": "^3.1.5"
|
|
66
|
+
}
|
|
67
|
+
}
|