{
	"name": "@infineon/infineon-design-system-stencil",
	"version": "39.34.1",
	"description": "Infineon Design System - Web Components",
	"keywords": [
		"infineon",
		"design-system",
		"web-components",
		"stencil",
		"ui-components",
		"component-library"
	],
	"homepage": "https://infineon.github.io/infineon-design-system-stencil/",
	"bugs": {
		"url": "https://github.com/Infineon/infineon-design-system-stencil/issues"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/Infineon/infineon-design-system-stencil.git",
		"directory": "packages/components"
	},
	"author": "Infineon Technologies AG",
	"license": "MIT",
	"main": "dist/index.cjs.js",
	"module": "dist/index.js",
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"import": "./dist/esm/infineon-design-system-stencil.js",
			"require": "./dist/cjs/infineon-design-system-stencil.js"
		},
		"./dist/*": {
			"import": "./dist/*",
			"types": "./dist/*"
		},
		"./loader": {
			"types": "./dist/loader/index.d.ts",
			"import": "./dist/loader/index.js",
			"require": "./dist/loader/index.cjs.js"
		},
		"./components": {
			"types": "./dist/components/index.d.ts",
			"default": "./dist/components/index.js"
		},
		"./components/*": {
			"default": "./dist/components/*"
		},
		"./styles.css": "./dist/infineon-design-system-stencil/infineon-design-system-stencil.css"
	},
	"unpkg": "dist/infineon-design-system-stencil/infineon-design-system-stencil.esm.js",
	"types": "dist/types/index.d.ts",
	"collection": "dist/collection/collection-manifest.json",
	"collection:main": "dist/collection/index.js",
	"files": [
		"dist/"
	],
	"scripts": {
		"build": "wireit",
		"dev": "cross-env BUILD_TARGET=www stencil build --dev --watch --serve",
		"dev:www": "wireit",
		"dev:angular": "wireit",
		"dev:react": "wireit",
		"dev:vue": "wireit",
		"dev:html": "wireit",
		"test": "jest",
		"test:watch": "jest --watch",
		"test:update": "jest -u",
		"generate": "stencil generate",
		"lint": "pnpm run lint:eslint && pnpm run lint:biome",
		"lint:eslint": "eslint .",
		"lint:biome": "biome lint .",
		"lint:fix": "pnpm run lint:eslint:fix && pnpm run lint:biome:fix",
		"lint:biome:fix": "biome lint --write .",
		"lint:eslint:fix": "eslint . --fix",
		"format": "biome format --write .",
		"check": "biome check --write .",
		"storybook": "wireit",
		"build-storybook": "wireit"
	},
	"devDependencies": {
		"@figma/code-connect": "^1.4.2",
		"@stencil/angular-output-target": "^1.1.1",
		"@stencil/core": "^4.38.0",
		"@stencil/react-output-target": "^1.2.0",
		"@stencil/sass": "^3.2.2",
		"@stencil/vue-output-target": "^0.11.8",
		"@storybook/addon-a11y": "^10.0.6",
		"@storybook/addon-docs": "^10.0.6",
		"@storybook/web-components-vite": "^10.0.6",
		"@types/jest": "^29.5.14",
		"@types/js-beautify": "^1.14.3",
		"@types/node": "^22.13.5",
		"glob": "^13.0.6",
		"jest": "^30.2.0",
		"jest-cli": "^30.2.0",
		"jest-stencil-runner": "^0.0.9",
		"js-beautify": "^1.15.4",
		"lit": "^3.3.1",
		"puppeteer": "^24.31.0",
		"remark-gfm": "^4.0.1",
		"storybook": "^10.0.6",
		"typescript": "5.9.3",
		"vite": "^7.2.4",
		"workbox-build": "4.3.1"
	},
	"dependencies": {
		"@infineon/design-system-tokens": "^7.0.0",
		"@infineon/infineon-icons": "^4.7.4",
		"@popperjs/core": "^2.11.8",
		"ag-grid-community": "^34.3.1",
		"choices.js": "^10.2.0",
		"classnames": "^2.5.1"
	},
	"wireit": {
		"build": {
			"command": "stencil build",
			"files": [
				"src/**",
				"stencil.config.ts",
				"tsconfig.json",
				"package.json"
			],
			"output": [
				"dist/**",
				"loader/**",
				"build-wrapper/**"
			]
		},
		"build-storybook": {
			"command": "storybook build",
			"dependencies": [
				"build"
			],
			"files": [
				"src/**",
				".storybook/**"
			],
			"output": [
				"storybook-static/**"
			]
		},
		"dev:www": {
			"command": "cross-env BUILD_TARGET=www stencil build --dev --watch",
			"service": {
				"readyWhen": {
					"lineMatches": "build finished"
				}
			}
		},
		"dev:vue": {
			"command": "cross-env BUILD_TARGET=vue stencil build --watch",
			"service": {
				"readyWhen": {
					"lineMatches": "build finished"
				}
			}
		},
		"dev:react": {
			"command": "cross-env BUILD_TARGET=react stencil build --watch",
			"service": {
				"readyWhen": {
					"lineMatches": "build finished"
				}
			}
		},
		"dev:angular": {
			"command": "cross-env BUILD_TARGET=angular stencil build --watch",
			"service": {
				"readyWhen": {
					"lineMatches": "build finished"
				}
			}
		},
		"dev:html": {
			"command": "cross-env BUILD_TARGET=html stencil build --watch",
			"service": {
				"readyWhen": {
					"lineMatches": "build finished"
				}
			}
		},
		"storybook": {
			"command": "pnpm exec storybook dev -p 6262",
			"service": true,
			"dependencies": [
				{
					"script": "dev:www",
					"cascade": false
				}
			]
		}
	},
	"gitHead": "1032bf88d74661487a8fda641a1d3a37d8ee97e7"
}
