forked from piellardj/navier-stokes-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1001 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "navier-stokes-webgl",
"homepage": "https://piellardj.github.io/navier-stokes-webgl",
"description": "Stable fluid simulation running on GPU",
"author": "Jérémie PIELLARD <[email protected]> (https://github.com/piellardj)",
"repository": "github:piellardj/navier-stokes-webgl",
"private": true,
"license": "ISC",
"scripts": {
"pre-commit": "npm run rebuild",
"build-page": "ts-node-script src/generate-page.ts",
"build": "npm run build-page && npm run webpack",
"clean": "shx rm -rf docs/* **/*generated.*",
"rebuild": "npm run clean && npm run build",
"webpack": "webpack --config src/config/webpack.config.js"
},
"engine": {
"node": ">=16.13.0"
},
"devDependencies": {
"@types/node": "^16.11.11",
"shx": "^0.3.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpage-templates": "github:piellardj/webpage-templates"
}
}