-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.2 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
{
"devDependencies": {
"@lib-env/build-constants": "workspace:*",
"@lib-env/build-utils": "workspace:*",
"@lib-env/eslint-config": "workspace:*",
"@lib-env/path": "workspace:*",
"@lib-env/shared": "workspace:*",
"@types/chroma-js": "^2.1.4",
"@types/gulp": "^4.0.9",
"@types/node": "^18.0.4",
"@types/three": "^0.162.0",
"arcgis-js-api": "^4.29.8",
"consola": "^2.15.3",
"eslint": "^9.5.0",
"fast-glob": "^3.2.11",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"mri": "^1.2.0",
"pinia": "^2.0.21",
"pinia-plugin-persist": "^1.0.0",
"sass": "^1.71.1",
"sucrase": "^3.35.0",
"tsx": "^3.8.0",
"unbuild": "^2.0.0",
"unocss": "^0.58.5",
"unocss-preset-vunk": "^1.0.4",
"vite": "^5.1.3",
"vitest": "^0.18.1"
},
"dependencies": {
"@arcgis/core": "^4.29.8",
"@element-plus/icons-vue": "^2.1.0",
"@farst-three/core": "^0.0.13-alpha",
"@skzz/platform": "0.0.0-alpha.71",
"@turf/turf": "^6.5.0",
"@vuesri-three/components": "workspace:*",
"@vuesri-three/composables": "workspace:*",
"@vuesri-three/shared": "workspace:*",
"@vuesri/core": "^1.0.8",
"@vuesri/three": "workspace:*",
"@vueuse/core": "^9.12.0",
"@vunk/core": "0.0.0-alpha.113",
"@vunk/form": "^1.1.52",
"@vunk/shared": "^0.5.37",
"@vunk/skzz": "0.0.0-alpha.110",
"chroma-js": "^2.4.2",
"element-plus": "npm:element-plus@latest",
"mitt": "^3.0.1",
"three": "^0.165.0",
"radash": "^12.1.0",
"twgl.js": "^5.5.4",
"vue": "^3.5.12"
},
"scripts": {
"dev": "pnpm run -C docs dev",
"lint": "eslint --fix app/**/*.{ts,tsx,vue}",
"app:build": "pnpm run -C app build",
"build": "gulp -f scripts/build/index.ts",
"stub": "pnpm run -r --parallel stub",
"postinstall": "pnpm stub",
"docs:dev": "pnpm run -C docs dev",
"docs:build": "pnpm run -C docs build",
"publish": "gulp -f scripts/publish.ts",
"docker:publish": "gulp -f scripts/docker/publish.ts",
"cc": "gulp -f scripts/create/component/index.ts",
"ccd": "gulp -f scripts/create/component-docs/index.ts",
"app:preview": "gulp -f scripts/app/preview.ts",
"app:init-arcgis": "gulp -f scripts/app/init-arcgis.ts",
"run:task": "gulp -f scripts/task.ts",
"rm:nm": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +"
}
}