-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "three-hex-map",
"version": "0.0.1",
"description": "A civ like 3D hexagonal terrain map based on three.js.",
"main": "index.js",
"scripts": {
"prepare": "cp ./node_modules/three/build/three.min.js ./public/js/three.min.js",
"compile": "npx tsc",
"bundle": "npx browserify build/index.js -p esmify > public/js/bundle.js",
"minify": "npx uglifyjs public/js/bundle.js -o public/js/bundle.min.js",
"build": "npx webpack",
"release": "npm run compile && npm run bundle && npm run minify",
"server": "npx http-server public -c-1 -p 3000",
"start": "npm run compile && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gunyakov/three-hex-map.git"
},
"keywords": [
"civilizatio",
"hex map",
"game map"
],
"author": "Oleg Gunyakov",
"license": "ISC",
"bugs": {
"url": "https://github.com/gunyakov/three-hex-map/issues"
},
"homepage": "https://github.com/gunyakov/three-hex-map#readme",
"devDependencies": {
"@types/requirejs": "^2.1.34",
"@types/three": "^0.148.1",
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"nodemon": "^2.0.20",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@types/dat.gui": "^0.7.7",
"axios": "^1.2.3",
"dat.gui": "^0.7.9",
"robust-point-in-polygon": "^1.0.3",
"three": "^0.148.0"
}
}