{
	"name": "@effuse/ink",
	"version": "1.2.5",
	"description": "A reactive Markdown renderer for Effuse. It allows you to render Markdown content and embed interactive components directly within your text.",
	"author": "Chris M. Pérez",
	"license": "MIT",
	"publishConfig": {
		"access": "public"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/chrismichaelps/effuse.git"
	},
	"bugs": {
		"url": "https://github.com/chrismichaelps/effuse/issues"
	},
	"homepage": "https://github.com/chrismichaelps/effuse#readme",
	"type": "module",
	"main": "./dist/index.cjs",
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js",
			"require": "./dist/index.cjs"
		}
	},
	"files": [
		"dist",
		"src"
	],
	"scripts": {
		"build": "tsup",
		"dev": "tsup --watch",
		"lint": "eslint src",
		"pretest": "node ../../scripts/check-node-version.mjs",
		"test": "vitest run",
		"typecheck": "tsc --noEmit"
	},
	"keywords": [
		"markdown",
		"reactive",
		"renderer",
		"components",
		"effuse",
		"typescript"
	],
	"engines": {
		"node": ">=22.14.0"
	},
	"peerDependencies": {
		"@effuse/core": "3.0.0"
	},
	"dependencies": {
		"effect": "^3.21.5"
	},
	"devDependencies": {
		"@effect/eslint-plugin": "^0.3.2",
		"@eslint/js": "^9.39.4",
		"@types/node": "^25.5.0",
		"@effuse/core": "3.0.0",
		"eslint": "^10.0.3",
		"tsup": "^8.5.1",
		"typescript": "^5.9.3",
		"typescript-eslint": "^8.57.1",
		"vitest": "^4.1.0"
	}
}
