Files
bitfielder/package.json
2025-07-06 13:11:19 +02:00

66 lines
1.6 KiB
JSON

{
"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": "eslint src --ext .ts,.tsx --fix && prettier --write src",
"lint:check": "eslint src --ext .ts,.tsx && prettier --check src"
},
"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-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.35.1",
"vite": "^4.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@nanostores/react": "^1.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"lucide": "^0.525.0",
"nanostores": "^1.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}