first commit

This commit is contained in:
2025-07-05 02:34:28 +02:00
commit 423b02a195
11 changed files with 2240 additions and 0 deletions

46
package.json Normal file
View File

@ -0,0 +1,46 @@
{
"name": "bitfielder",
"version": "1.0.0",
"description": "A minimalist live shader editor for bitfield patterns",
"type": "module",
"main": "./dist/index.html",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "echo 'No linter configured'"
},
"keywords": [
"shader",
"bitfield",
"live-coding",
"visual",
"performance",
"canvas",
"procedural",
"graphics"
],
"author": "bitfielder",
"license": "AGPL3",
"repository": {
"type": "git",
"url": "git+https://git.raphaelforment.fr/BuboBubo/bitfielder"
},
"bugs": {
"url": "https://git.raphaelforment.fr/BuboBubo/bitfielder/issues"
},
"homepage": "https://git.raphaelforment.fr/BuboBubo/bitfielder",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"vite": "^4.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}