{
	"name": "kampsy-ui",
	"license": "MIT",
	"version": "0.1.3",
	"author": {
		"name": "Kampamba Chanda",
		"email": "admin@kampsy.xyz",
		"url": "https://string.kampsy.xyz/about"
	},
	"homepage": "https://ui.kampsy.xyz",
	"repository": {
		"type": "git",
		"url": "https://github.com/kampsy/ui.git"
	},
	"bugs": {
		"url": "https://github.com/kampsy/ui/issues"
	},
	"scripts": {
		"dev": "vite dev --port 3000",
		"build": "vite build && npm run package",
		"preview": "vite preview",
		"package": "svelte-kit sync && svelte-package && publint",
		"prepublishOnly": "npm run package",
		"test": "npm run test:integration && npm run test:unit",
		"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
		"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
		"lint": "prettier --check . && eslint .",
		"format": "prettier --write .",
		"test:integration": "playwright test",
		"test:unit": "vitest"
	},
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"svelte": "./dist/index.js"
		},
		"./icons": {
			"types": "./dist/icons/index.d.ts",
			"svelte": "./dist/icons/index.js"
		},
		"./preset": {
			"default": "./dist/preset/index.js"
		}
	},
	"files": [
		"dist",
		"!dist/**/*.test.*",
		"!dist/**/*.spec.*"
	],
	"peerDependencies": {
		"svelte": "^5.0.0-next.1"
	},
	"devDependencies": {
		"@playwright/test": "^1.49.0",
		"@semantic-release/exec": "^6.0.3",
		"@sveltejs/adapter-auto": "^3.3.1",
		"@sveltejs/kit": "^2.9.0",
		"@sveltejs/package": "^2.3.7",
		"@sveltejs/vite-plugin-svelte": "4.0.0-next.6",
		"@types/eslint": "^8.56.12",
		"autoprefixer": "^10.4.20",
		"eslint": "^9.16.0",
		"eslint-config-prettier": "^9.1.0",
		"eslint-plugin-svelte": "^2.46.1",
		"globals": "^15.12.0",
		"highlight.js": "^11.10.0",
		"postcss": "^8.4.49",
		"prettier": "^3.4.1",
		"prettier-plugin-svelte": "^3.3.2",
		"publint": "^0.1.16",
		"semantic-release": "^24.2.0",
		"svelte": "^5.3.0",
		"svelte-check": "^4.1.0",
		"tailwindcss": "^3.4.15",
		"tslib": "^2.8.1",
		"typescript": "^5.7.2",
		"typescript-eslint": "8.0.0-alpha.39",
		"vite": "^5.4.11",
		"vitest": "^1.6.0"
	},
	"svelte": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"type": "module",
	"keywords": [
		"ui",
		"components",
		"svelte",
		"svelte-5",
		"component-library",
		"ui-components",
		"ui-framework",
		"tailwind",
		"tailwindcss",
		"components-library",
		"sveltekit"
	],
	"release": {
		"plugins": [
			[
				"@semantic-release/commit-analyzer",
				{
					"parserOpts": {
						"noteKeywords": [
							"BREAKING CHANGE",
							"BREAKING CHANGES",
							"BREAKING"
						]
					}
				}
			],
			[
				"@semantic-release/release-notes-generator",
				{
					"parserOpts": {
						"noteKeywords": [
							"BREAKING CHANGE",
							"BREAKING CHANGES",
							"BREAKING"
						]
					}
				}
			],
			[
				"@semantic-release/exec",
				{
					"verifyConditionsCmd": "pnpm check"
				}
			],
			"@semantic-release/npm",
			"@semantic-release/github"
		]
	}
}