UNPKG

coffi

Version:

⚡️ A fast, lightweight, easy-to-use, configuration files loader 📄

54 lines 1.35 kB
{ "name": "coffi", "description": "⚡️ A fast, lightweight, easy-to-use, configuration files loader 📄", "version": "0.1.31", "type": "module", "files": [ "dist" ], "module": "./dist/index.js", "main": "./dist/index.cjs", "types": "./dist/index.d.cts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.cts" } }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "bumpp": "^10.1.0", "bunup": "^0.8.19", "husky": "^9.1.7", "typescript": "^5.8.3", "vitest": "^3.1.1" }, "keywords": [ "config", "config-loader", "config-files", "config-files-loader" ], "license": "MIT", "dependencies": { "strip-json-comments": "^5.0.1" }, "scripts": { "build": "bunup", "dev": "bunup --watch", "lint": "biome check .", "lint:fix": "biome check --write .", "format": "biome format .", "format:fix": "biome format --write .", "tsc": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "release": "bumpp --commit --push --tag", "publish:ci": "bun publish --access public --no-git-checks", "prepare": "husky" } }