UNPKG

@dbs-portal/core-module-registry

Version:

Core module registry system for automatic module discovery and registration

68 lines (67 loc) 1.65 kB
{ "name": "@dbs-portal/core-module-registry", "version": "1.0.0", "description": "Core module registry system for automatic module discovery and registration", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md" ], "scripts": { "build": "tsc && vite build", "dev": "tsc --watch", "type-check": "tsc --noEmit", "lint": "biome lint src", "format": "biome format src --write", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage", "clean": "rimraf dist" }, "dependencies": { "@dbs-portal/core-shared": "1.0.0", "zod": "^3.22.0", "lodash-es": "^4.17.21", "glob": "^10.3.10" }, "devDependencies": { "@types/lodash-es": "^4.17.0", "@types/glob": "^8.1.0", "typescript": "^5.0.0", "vite": "^5.0.0", "vitest": "^1.0.0", "eslint": "^8.0.0", "rimraf": "^5.0.0" }, "keywords": [ "dbs-portal", "module-registry", "module-discovery", "automatic-registration", "framework", "typescript" ], "author": "DBS Portal Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/devboost-solutions/dbs-portal.git", "directory": "packages/core/module-registry" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "bugs": { "url": "https://github.com/your-org/dbs-portal/issues" }, "homepage": "https://github.com/your-org/dbs-portal#readme" }