-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "@vcmap/height-profile",
"version": "2.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "vcmplugin build",
"build": "vcmplugin build",
"bundle": "vcmplugin bundle",
"start": "vcmplugin serve",
"preview": "vcmplugin preview",
"buildStagingApp": "vcmplugin buildStagingApp",
"lint:js": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"format": "prettier --write --list-different . && npm run lint:js -- --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"type-check": "vue-tsc --noEmit",
"ensure-types": "vcmplugin ensure-types"
},
"author": "Patrick Würstle <[email protected]>",
"license": "MIT",
"keywords": [
"vcmap",
"plugin"
],
"files": [
"src/",
"dist/",
"plugin-assets/",
"LICENSE.md",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": "dist/index.js",
"./dist": "./dist/index.js"
},
"eslintIgnore": [
"node_modules",
"dist",
"plugin-assets"
],
"prettier": "@vcsuite/eslint-config/prettier.js",
"peerDependencies": {
"@vcmap-cesium/engine": "^11.0.2",
"@vcmap/core": "^6.0.0",
"@vcmap/ui": "^6.0.1",
"ol": "^10.2.1",
"vue": "~3.4.38",
"vuetify": "^3.7.3"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"@vcmap/plugin-cli": "^4.0.1",
"@vcsuite/eslint-config": "^3.0.6",
"@vitest/coverage-v8": "^2.1.3",
"jest-canvas-mock": "^2.5.2",
"jsdom": "^24.0.0",
"resize-observer-polyfill": "^1.5.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3",
"vue-tsc": "^2.1.6"
},
"dependencies": {
"@vcsuite/logger": "^1.0.1",
"apexcharts": "^3.47.0",
"uuid": "^9.0.1",
"vue3-apexcharts": "^1.5.3"
},
"mapVersion": "^6.0"
}