-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "dungrain",
"version": "0.1.6",
"description": "BSP based procedural dungeon generation package.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/obsfx/dungrain.git"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"standalone": "browserify ./src/index.ts -s dungrain -p [ tsify ] > ./build/dungrain.js",
"minify": "uglifyjs ./build/dungrain.js -c -o ./build/dungrain.min.js",
"build-standalone-and-minify": "npm run standalone && npm run minify",
"rmout": "rm -R ./dist"
},
"keywords": [
"procedural",
"generation",
"seed",
"random",
"dungeon",
"binary space partitioning",
"game",
"development"
],
"author": "obsfx",
"license": "WTFPL",
"devDependencies": {
"@types/node": "^13.5.0",
"@types/seedrandom": "^2.4.28",
"browserify": "^16.5.0",
"tsify": "^4.0.1",
"typescript": "^3.7.4",
"uglify-js": "^3.7.6"
},
"dependencies": {
"seedrandom": "^3.0.5"
}
}