Adding the first glitch gallery

This commit is contained in:
2026-03-24 11:30:14 +01:00
commit 137d1a8191
24 changed files with 1572 additions and 0 deletions
@@ -0,0 +1,49 @@
{
"name": "@glitch-components/__COMPONENT_ID__",
"version": "1.0.0",
"description": "__COMPONENT_DISPLAY_NAME__ glitch component for Glitch University",
"type": "module",
"main": "./dist/__BUNDLE_NAME__.js",
"module": "./dist/__BUNDLE_NAME__.js",
"types": "./src/types.ts",
"exports": {
".": {
"import": "./dist/__BUNDLE_NAME__.js",
"types": "./src/types.ts"
}
},
"files": [
"dist",
"src/types.ts",
"glitch.manifest.json"
],
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.1",
"leva": "^0.10.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"keywords": [
"glitch",
"mini-game",
"react",
"component"
],
"author": "Glitch.university",
"license": "MIT"
}