-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"dependencies": {
"purecss": "^3.0.0",
"tsc": "^2.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/fork-ts-checker-webpack-plugin": "^0.4.5",
"@types/node": "^18.11.9",
"@types/webpack-dev-server": "^4.7.2",
"babel-loader": "^9.1.0",
"eslint": "^8.29.0",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"gl-matrix": "^3.4.3",
"html-webpack-plugin": "^5.5.0",
"json-loader": "^0.5.7",
"seedrandom": "^3.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"name": "terragen",
"description": "Procedural terrain generator using Perlin noise",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbhijeetKrishnan/terragen.git"
},
"keywords": [
"perlin",
"procedural",
"WebGL"
],
"author": "Abhijeet Krishnan",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/AbhijeetKrishnan/terragen/issues"
},
"homepage": "https://github.com/AbhijeetKrishnan/terragen#readme"
}