27 lines
704 B
JSON
27 lines
704 B
JSON
{
|
|
"name": "ants-simulation",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"lil-gui": "^0.20.0",
|
|
"three": "^0.173.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.6",
|
|
"@types/bun": "^1.3.10",
|
|
"@types/three": "^0.173.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^6.4.1"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "bunx biome check --write .",
|
|
"typecheck": "bunx tsc --noEmit",
|
|
"test": "bun test",
|
|
"check": "bun run lint && bun run typecheck && bun run test"
|
|
},
|
|
"license": "MIT"
|
|
}
|