-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.34 KB
/
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
31
32
33
34
35
36
37
{
"name": "water-webgpu",
"homepage": "https://piellardj.github.io/water-webgpu",
"author": "Jérémie PIELLARD <[email protected]> (https://github.com/piellardj)",
"repository": "github:piellardj/water-webgpu",
"private": true,
"scripts": {
"pre-commit": "npm run rebuild && npm run lint",
"http-server": "http-server ./docs -p 8080 -c-1",
"build-page": "ts-node-script src/generate-page.ts",
"build": "npm run build-page && npm run webpack",
"clean": "shx rm -rf docs/* **/*generated.*",
"lint": "eslint src/ts -c src/config/.eslintrc.json --ext .ts",
"lint-fix": "eslint src/ts -c src/config/.eslintrc.json --ext .ts --fix",
"rebuild": "npm run clean && npm run build",
"webpack": "webpack --config src/config/webpack.config.js",
"webpack-watch": "webpack --config src/config/webpack.config.js --watch"
},
"engines": {
"node": ">=18.16.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@webgpu/types": "^0.1.32",
"eslint": "^8.42.0",
"gl-matrix": "^3.4.3",
"http-server": "^14.1.1",
"shx": "^0.3.4",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpage-templates": "github:piellardj/webpage-templates"
}
}