react-amiga-guru-meditation
Version:
A React Error Boundary styled like the Amiga Guru Meditation — accessible, themeable, zero runtime dependencies, ARIA-compliant, CSS variables theming.
99 lines • 2.73 kB
JSON
{
"name": "react-amiga-guru-meditation",
"version": "4.0.1",
"description": "A React Error Boundary styled like the Amiga Guru Meditation — accessible, themeable, zero runtime dependencies, ARIA-compliant, CSS variables theming.",
"license": "MIT",
"author": "Giovambattista Fazioli",
"homepage": "https://gfazioli.github.io/react-amiga-guru-meditation/",
"repository": {
"type": "git",
"url": "https://github.com/gfazioli/react-amiga-guru-meditation"
},
"bugs": {
"url": "https://github.com/gfazioli/react-amiga-guru-meditation/issues"
},
"keywords": [
"react",
"react-component",
"error-boundary",
"amiga",
"guru-meditation",
"fallback",
"accessible",
"aria",
"css-modules",
"typescript",
"retro"
],
"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"
},
"./styles.css": "./dist/index.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"**/*.css"
],
"engines": {
"node": ">=18"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.4.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"prismjs": "^1.30.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"site:dev": "vite --config site/vite.config.ts",
"site:build": "pnpm build && vite build --config site/vite.config.ts",
"site:preview": "vite preview --config site/vite.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"release": "changeset publish",
"changeset": "changeset"
}
}