@ribcage/config
Version: 
Configuration schema and utilities for Ribcage projects
41 lines (40 loc) • 798 B
JSON
{
	"name": "@ribcage/config",
	"version": "0.0.4",
	"description": "Configuration schema and utilities for Ribcage projects",
	"main": "./src/index.ts",
	"types": "./src/index.ts",
	"exports": {
		".": "./src/index.ts"
	},
	"scripts": {
		"test": "vitest run",
		"test:watch": "vitest",
		"lint": "biome check ./src --write",
		"format": "biome format ./src --write",
		"typecheck": "tsc --noEmit"
	},
	"dependencies": {
		"zod": "^3.22.4"
	},
	"devDependencies": {
		"@biomejs/biome": "^2.1.3",
		"@types/bun": "latest",
		"typescript": "^5.3.3",
		"vitest": "^1.2.0"
	},
	"peerDependencies": {
		"typescript": ">=5.0.0"
	},
	"keywords": [
		"ribcage",
		"config",
		"configuration",
		"schema"
	],
	"author": "Christian Mitchell",
	"license": "MIT",
	"publishConfig": {
		"access": "public"
	}
}