adjustments

This commit is contained in:
2026-01-31 21:25:25 +01:00
parent 0a7dc2f25f
commit dedcec547d
13 changed files with 1660 additions and 2533 deletions

View File

@@ -2,13 +2,12 @@
"name": "web-ocean",
"version": "0.0.1",
"description": "Simulating a ocean with typescript and webgl.",
"main": "index.html",
"type": "module",
"scripts": {
"livedev": "concurrently --kill-others \"npm-watch\"",
"build:release": "tsc && browserify ./build/main.js | uglifyjs > ./build/app.js",
"build:debug": "tsc && browserify --debug ./build/main.js -o ./build/app.js",
"build:tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"build:legacy": "tsc && browserify ./build/main.js | uglifyjs > ./build/app.js"
},
"keywords": [
"webgl",
@@ -21,10 +20,8 @@
"author": "Julian Niessner",
"license": "ISC",
"devDependencies": {
"browserify": "^17.0.1",
"concurrently": "^9.2.1",
"typescript": "^5.9.3",
"uglify-js": "^3.19.3"
"vite": "^6.0.7"
},
"dependencies": {
"gl-matrix": "^3.4.4"