{
	"name": "@stellarwp/mcp-node-config",
	"version": "2.0.0",
	"description": "An MCP configuration library for Node.js",
	"type": "module",
	"main": "dist/config.js",
	"types": "dist/config.d.ts",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/stellarwp/mcp-monorepo.git",
		"directory": "packages/node-config"
	},
	"files": [
		"dist"
	],
	"scripts": {
		"build": "tsc --build && bun build ./src/*.ts --outdir ./dist --target node",
		"dev": "bun --watch run src/config.ts"
	},
	"dependencies": {
		"@dotenvx/dotenvx": "^1.48.4"
	},
	"devDependencies": {
		"bun-types": "latest"
	},
	"exports": {
		".": {
			"types": "./dist/config.d.ts",
			"import": "./dist/config.js"
		},
		"./env": {
			"types": "./dist/env.d.ts",
			"import": "./dist/env.js"
		}
	}
}