{
	"name": "@agyemanjp/fxui",
	"version": "0.0.14",
	"description": "Functional, declarative, component-based UI library that supports JSX and Typescript",
	"main": "index.js",
	"types": "index.d.ts",
	"type": "module",
	"sideEffects": false,
	"files": [
		"/*"
	],
	"homepage": "https://github.com/agyemanjp/fxui.js#readme",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/agyemanjp/fxui.js.git"
	},
	"bugs": {
		"url": "https://github.com/agyemanjp/fxui.js/issues"
	},
	"keywords": [
		"UI",
		"functional",
		"declarative",
		"component",
		"JSX",
		"TypeScript"
	],
	"author": {
		"name": "James Prempeh",
		"email": "agyemanjp@danfortsystems.com"
	},
	"license": "MIT",
	"dependencies": {
		"@agyemanjp/standard": "6.0.1",
		"morphdom": "2.7.2"
	},
	"devDependencies": {
		"@biomejs/biome": "1.9.4",
		"@types/bun": "1.1.6",
		"@types/chai": "4.2.22",
		"@types/chai-html": "1.3.0",
		"@types/source-map-support": "0.5.1",
		"chai": "4.3.4",
		"chai-html": "2.0.1",
		"chalk": "4.1.2",
		"source-map-support": "0.5.19",
		"npm-run-all": "4.1.5",
		"typescript": "5.5.4"
	},
	"scripts": {
		"deps": "rm -rf ./node_modules bun.lockb && bun install",
		"clean": "rm -rf dist tmp tsconfig.tsbuildinfo",
		"typecheck": "tsc --noEmit",
		"compile": "tsc --outDir tmp && mkdir -p dist && cp -r tmp/source/* dist && rm -rf tmp",
		"test": "bun test",
		"ver:patch": "npm version patch && git push --follow-tags",
		"ver:minor": "npm version minor && git push --follow-tags",
		"ver:major": "npm version major && git push --follow-tags",
		"publish:stage": "cp package.json LICENSE README.md dist",
		"publish:preview": "bun publish:stage && cd dist && bun publish --dry-run && cd ..",
		"publish:patch": "run-s clean compile ver:patch publish:stage && cd dist && bun publish --access public && cd ..",
		"publish:minor": "run-s clean compile ver:minor publish:stage && cd dist && bun publish --access public && cd ..",
		"publish:major": "run-s clean compile ver:major publish:stage && cd dist && bun publish --access public && cd .."
	}
}
