configrep
Version:
CLI tool for exploring configuration files
65 lines (64 loc) • 1.38 kB
JSON
{
"name": "configrep",
"version": "1.8.1",
"description": "CLI tool for exploring configuration files",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"bin": {
"cfg": "./dist/index.js"
},
"keywords": [
"config",
"configuration",
"cli",
"tool",
"env",
"json",
"yaml",
"toml",
"ini",
"explorer"
],
"author": "Matt Cook",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mattcookio/configrep.git"
},
"homepage": "https://github.com/mattcookio/configrep#readme",
"bugs": {
"url": "https://github.com/mattcookio/configrep/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --format esm --sourcemap",
"start": "bun run src/index.ts",
"dev": "bun run src/index.ts",
"test": "bun test",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/bun": "latest",
"@types/inquirer": "^9.0.9"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/react": "^19.1.9",
"commander": "^14.0.0",
"fast-json-patch": "^3.1.1",
"ink": "^6.1.0",
"inquirer": "^12.9.1",
"react": "^19.1.1",
"toml": "^3.0.0",
"yaml": "^2.8.1"
}
}