-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
38
39
{
"name": "ray-casting-engine-js",
"version": "1.0.0",
"description": "Ray Casting Engine with pure JS.",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development",
"start:debug": "webpack serve --mode development --env debug=true",
"build": "webpack --mode production",
"build:debug": "webpack --mode production --env debug=true",
"dev": "webpack serve --mode development --open",
"prod": "webpack serve --mode production --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MERTULAS/RayCastingEngineJS.git"
},
"keywords": [
"raycasting",
"pseudo-3d",
"computer-graphics"
],
"author": "Mert ULAS",
"license": "ISC",
"bugs": {
"url": "https://github.com/MERTULAS/RayCastingEngineJS/issues"
},
"homepage": "https://github.com/MERTULAS/RayCastingEngineJS#readme",
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^13.0.1",
"html-webpack-plugin": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}