@nexe/config-manager
Version:
Nexe Config Manager - A flexible configuration management solution with multiple sources and hot reload support
67 lines (66 loc) • 1.59 kB
JSON
{
"name": "@nexe/config-manager",
"version": "0.1.0",
"description": "Nexe Config Manager - A flexible configuration management solution with multiple sources and hot reload support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"check-types": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "npm run clean && npm run build",
"publish:npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/aqz236/nexe.git",
"directory": "packages/tools/config-manager"
},
"homepage": "https://github.com/aqz236/nexe/tree/main/packages/tools/config-manager#readme",
"bugs": {
"url": "https://github.com/aqz236/nexe/issues"
},
"author": "aqz236",
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"@nexe/logger": "^0.1.0"
},
"devDependencies": {
"@types/bun": "^1.2.19",
"@types/node": "^24.1.0",
"@types/reflect-metadata": "^0.1.0",
"typescript": "5.9.2"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"nexe",
"config",
"configuration",
"config-manager",
"hot-reload",
"consul",
"environment",
"json",
"yaml",
"toml"
]
}