figue
Version:
Platform agnostic configuration management library, with environmental variables and validation, like convict but cross-env and zod schemas
67 lines • 1.56 kB
JSON
{
"name": "figue",
"type": "module",
"version": "2.2.3",
"private": false,
"description": "Platform agnostic configuration management library, with environmental variables and validation, like convict but cross-env and zod schemas",
"author": "Corentin Th <corentin.thomasset74+npm@gmail.com> (https://github.com/CorentinTh)",
"license": "MIT",
"funding": "https://github.com/sponsors/CorentinTh",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/figue"
},
"keywords": [
"configuration",
"validation",
"management",
"convict",
"env",
"variable",
"parser",
"config",
"environnement",
"vite",
"browser",
"import",
"meta"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"zod": "^3.22.4"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.5.0",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^1.6.0"
},
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "bumpp && pnpm publish",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
}
}