-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 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
{
"name": "@vcmap/viewshed",
"version": "3.0.5",
"description": "Tool to simulate a \"viewer\" and their field of vision from a certain standpoint in the map. It allows the user to see which areas and buildings can or can't be seen from a specific standpoint, regarding different viewing distances, viewers' sizes and orientations.Th",
"type": "module",
"main": "src/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"
},
"author": "Tobias Krauth <[email protected]>",
"license": "MIT",
"keywords": [
"vcmap",
"plugin"
],
"files": [
"src/",
"dist/",
"plugin-assets/",
"LICENSE.md",
"README.md",
"CHANGELOG.md"
],
"exports": {
".": "./src/index.js",
"./dist": "./dist/index.js"
},
"eslintIgnore": [
"node_modules",
"dist",
"plugin-assets"
],
"eslintConfig": {
"root": true,
"extends": "@vcsuite/eslint-config/vue"
},
"prettier": "@vcsuite/eslint-config/prettier.js",
"peerDependencies": {
"@vcmap-cesium/engine": "^11.0.2",
"@vcmap/core": "^6.0.4",
"@vcmap/ui": "^6.0.6",
"ol": "^10.2.1",
"vue": "~3.4.38",
"vuetify": "^3.7.3"
},
"devDependencies": {
"@vcmap/plugin-cli": "^4.0.1",
"@vcsuite/eslint-config": "^3.0.8",
"@vitest/coverage-v8": "^2.1.4",
"jest-canvas-mock": "^2.5.2",
"jsdom": "^22.1.0",
"resize-observer-polyfill": "^1.5.1",
"vitest": "^2.1.4"
},
"dependencies": {
"@vcsuite/check": "^2.1.0",
"@vcsuite/parsers": "^1.0.3"
},
"mapVersion": "^6.0"
}