-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"private": true,
"name": "excalibur-examples",
"description": "Mono repo for examples of Excalibur.js.",
"author": "tenpaMk2 <[email protected]> (https://github.com/tenpaMk2)",
"license": "MIT",
"scripts": {
"clean": "git clean -fdx --exclude TODO.md --exclude .vscode",
"bounce": "cd api-examples/bounce && npm run dev",
"click-reactions": "cd api-examples/click-reactions && npm run dev",
"detect-ground": "cd api-examples/detect-ground && npm run dev",
"event": "cd api-examples/event && npm run dev",
"inputs": "cd api-examples/inputs && npm run dev",
"mass-physics": "cd api-examples/mass-physics && npm run dev",
"scene-change": "cd api-examples/scene-change && npm run dev",
"scroll-and-score-text": "cd api-examples/scroll-and-score-text && npm run dev",
"slingshot": "cd api-examples/slingshot && npm run dev",
"sound": "cd api-examples/sound && npm run dev",
"sprite-animations": "cd api-examples/sprite-animations && npm run dev",
"alpha-adjust": "cd game-examples/alpha-adjust && npm run dev",
"asteroid": "cd game-examples/asteroid && npm run dev",
"bowman": "cd game-examples/bowman && npm run dev",
"breakout": "cd game-examples/breakout && npm run dev",
"clocks": "cd game-examples/clocks && npm run dev",
"doll-stamper": "cd game-examples/doll-stamper && npm run dev",
"dungeon-generator": "cd game-examples/dungeon-generator && npm run dev",
"lockon": "cd game-examples/lockon && npm run dev",
"samegame": "cd game-examples/samegame && npm run dev",
"snake": "cd game-examples/snake && npm run dev",
"tilemap": "cd game-examples/tilemap && npm run dev"
},
"keywords": [
"excaliburjs",
"excalibur",
"typescript",
"vite"
],
"workspaces": [
"api-examples/bounce",
"api-examples/click-reactions",
"api-examples/detect-ground",
"api-examples/event",
"api-examples/inputs",
"api-examples/mass-physics",
"api-examples/scene-change",
"api-examples/scroll-and-score-text",
"api-examples/slingshot",
"api-examples/sound",
"api-examples/sprite-animations",
"game-examples/alpha-adjust",
"game-examples/asteroid",
"game-examples/bowman",
"game-examples/breakout",
"game-examples/clocks",
"game-examples/doll-stamper",
"game-examples/dungeon-generator",
"game-examples/lockon",
"game-examples/samegame",
"game-examples/snake",
"game-examples/tilemap"
],
"devDependencies": {
"prettier": "^3.0.0"
}
}