UNPKG

trifid-plugin-yasgui

Version:
66 lines 1.79 kB
{ "name": "trifid-plugin-yasgui", "description": "Trifid YASGUI plugin", "type": "module", "version": "4.0.0", "license": "Apache-2.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "source": "./index.ts", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "homepage": "https://github.com/zazuko/trifid", "repository": { "type": "git", "url": "https://github.com/zazuko/trifid.git", "directory": "packages/yasgui" }, "bugs": { "url": "https://github.com/zazuko/trifid/issues" }, "files": [ "dist", "CHANGELOG.md" ], "author": { "name": "Zazuko GmbH", "url": "https://zazuko.com/" }, "keywords": [ "trifid", "trifid-plugin", "yasgui" ], "dependencies": { "@fastify/static": "^9.1.3", "@zazuko/yasgui": "^4.6.1", "import-meta-resolve": "^4.2.0" }, "devDependencies": { "@openlayers-elements/maps": "^0.4.0", "@openlayers-elements/swisstopo": "^0.4.0", "@types/node": "^25.5.0", "c8": "^11.0.0", "esbuild": "^0.28.1", "fastify": "^5.8.5", "rimraf": "^6.1.3", "typescript": "^6.0.3", "trifid-core": "^6.0.0" }, "publishConfig": { "access": "public", "provenance": true }, "scripts": { "test": "c8 --all --exclude='**/*.d.ts' --exclude='**/types/**' --exclude='test/**' --exclude=dist --exclude=scripts --exclude=build --exclude=plugins --exclude=coverage --reporter=lcovonly --reporter=text node --conditions=source --test **/*.test.ts", "typecheck": "tsc --noEmit", "clean": "rimraf *.tgz dist/ coverage/", "prebuild": "pnpm run clean && pnpm run prepare", "build": "tsc && node scripts/copy-assets.ts" } }