- Updated devDependencies in package.json: - Upgraded browserify to version 17.0.1 - Upgraded concurrently to version 9.2.1 - Upgraded typescript to version 5.9.3 - Upgraded uglify-js to version 3.19.3 - Updated gl-matrix dependency to version 3.4.4 - Added installation instructions to README
33 lines
819 B
JSON
33 lines
819 B
JSON
{
|
|
"name": "web-ocean",
|
|
"version": "0.0.1",
|
|
"description": "Simulating a ocean with typescript and webgl.",
|
|
"main": "index.html",
|
|
"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"
|
|
},
|
|
"keywords": [
|
|
"webgl",
|
|
"typescript",
|
|
"simulation",
|
|
"ocean",
|
|
"water",
|
|
"waves"
|
|
],
|
|
"author": "Julian Niessner",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"browserify": "^17.0.1",
|
|
"concurrently": "^9.2.1",
|
|
"typescript": "^5.9.3",
|
|
"uglify-js": "^3.19.3"
|
|
},
|
|
"dependencies": {
|
|
"gl-matrix": "^3.4.4"
|
|
}
|
|
}
|