Files
WebOcean/package.json
2026-01-31 21:25:25 +01:00

30 lines
609 B
JSON

{
"name": "web-ocean",
"version": "0.0.1",
"description": "Simulating a ocean with typescript and webgl.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"build:legacy": "tsc && browserify ./build/main.js | uglifyjs > ./build/app.js"
},
"keywords": [
"webgl",
"typescript",
"simulation",
"ocean",
"water",
"waves"
],
"author": "Julian Niessner",
"license": "ISC",
"devDependencies": {
"typescript": "^5.9.3",
"vite": "^6.0.7"
},
"dependencies": {
"gl-matrix": "^3.4.4"
}
}