[READ-ONLY] Mirror of https://github.com/flo-bit/tiny-creature. three.js journey #16 - tamagotchi flo-bit.dev/tiny-creature/
0

Configure Feed

Select the types of activity you want to include in your feed.

add license, readme

Florian (Feb 3, 2025, 12:55 PM +0100) a634776d c8315993

+37 -3
+21
LICENSE
··· 1 + MIT License Copyright (c) 2025 flo-bit 2 + 3 + Permission is hereby granted, free of 4 + charge, to any person obtaining a copy of this software and associated 5 + documentation files (the "Software"), to deal in the Software without 6 + restriction, including without limitation the rights to use, copy, modify, merge, 7 + publish, distribute, sublicense, and/or sell copies of the Software, and to 8 + permit persons to whom the Software is furnished to do so, subject to the 9 + following conditions: 10 + 11 + The above copyright notice and this permission notice 12 + (including the next paragraph) shall be included in all copies or substantial 13 + portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF 16 + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO 18 + EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 + THE SOFTWARE.
+12
Readme.md
··· 1 + # three.js journey #016 - tamagotchi 2 + 3 + Live here: [tiny creature](https://flo-bit.dev/tiny-creature/) 4 + 5 + work in progress for [three.js journey #016 - tamagotchi](https://threejs-journey.com/challenges/tamagotchi) 6 + 7 + uses 8 + - [three.js](https://threejs.org/) 9 + - [vite](https://vite.dev/) 10 + - [tailwind](https://tailwindcss.com/) 11 + - [wiggle](https://wiggle.three.tools/) 12 + - [pixi.js](https://pixijs.com/)
+4 -3
package.json
··· 1 1 { 2 - "name": "tamagotchi", 2 + "name": "tiny-creature", 3 3 "private": true, 4 4 "version": "0.0.0", 5 5 "type": "module", ··· 20 20 "tailwindcss": "^4.0.3", 21 21 "three": "^0.173.0", 22 22 "wiggle": "^0.0.17" 23 - } 24 - } 23 + }, 24 + "license": "MIT" 25 + }