initial release
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.npmrc
0 → 100644
.prettierignore
0 → 100644
CHANGELOG.md
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "smartvillages2", | ||
"version": "1.0.0", | ||
"description": "Plugin des SmartVillages2 Projekts", | ||
"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": "Matthias Betz <matthias.betz@hft-stuttgart.de>", | ||
"license": "AGPLv3", | ||
"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", | ||
"dependencies": { | ||
"three": "^0.169.0" | ||
}, | ||
"peerDependencies": { | ||
"@vcmap-cesium/engine": "^4.0.3", | ||
"@vcmap/core": "^5.3.0", | ||
"@vcmap/ui": "^5.2.4", | ||
"ol": "^7.5.2" | ||
}, | ||
"devDependencies": { | ||
"@vcmap/plugin-cli": "^3.1.2", | ||
"@vcsuite/eslint-config": "^3.0.7", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"jest-canvas-mock": "^2.5.2", | ||
"jsdom": "^24.1.0", | ||
"resize-observer-polyfill": "^1.5.1", | ||
"vitest": "^1.6.0" | ||
}, | ||
"mapVersion": "^5.0" | ||
} |
src/index.js
0 → 100644