-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 1.08 KB
/
deno.json
File metadata and controls
31 lines (31 loc) · 1.08 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
{
"tasks": {
"dev": {"dependencies": ["bundlewatch", "serve"]},
"serve": "deno run --watch -A ./main.ts",
"bundlewatch": "deno bundle --watch ./games/mod.ts --outdir ./static/js --platform 'browser'",
"bundle": "deno bundle ./games/mod.ts --outdir ./static/js --platform 'browser'"
},
"imports": {
"@mikewesthad/dungeon": "npm:@mikewesthad/dungeon@^2.0.1",
"@types/easystarjs": "npm:@types/easystarjs@^0.3.4",
"@yandeu/tap": "npm:@yandeu/tap@^0.1.2",
"@enable3d/phaser-extension": "npm:@enable3d/phaser-extension@^0.26.1",
"easystarjs": "npm:easystarjs@^0.4.4",
"matter-js": "npm:matter-js@^0.20.0",
"phaser": "npm:phaser@4.0.0-rc.4",
"phaser-matter-collision-plugin": "npm:phaser-matter-collision-plugin@^1.0.0",
"phaser3-rex-plugins": "npm:phaser3-rex-plugins@^1.1.74",
"poly-decomp": "npm:poly-decomp@^0.3.0",
"three": "npm:three@^0.178.0",
"three-csg-ts": "npm:three-csg-ts@^3.2.0"
},
"compilerOptions": {
"lib": [
"deno.window", "deno.ns", "dom"
]
},
"fmt": {
"singleQuote": true,
"useTabs": true
}
}