-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (55 loc) · 1.69 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
{
"author": "Alexandre Blondeau",
"dependencies": {
"@theatrejs/plugin-aseprite": "1.1.0",
"@theatrejs/theatrejs": "1.9.0"
},
"description": "🎮 A Game Menu example.",
"devDependencies": {
"@theatrejs/loader-aseprite": "1.0.0",
"dotenv": "16.4.5",
"file-loader": "6.2.0",
"webpack": "5.94.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.8.0",
"webpack-merge": "5.0.0"
},
"engines": {
"node": "16.13.0",
"npm": "8.1.0"
},
"keywords": [
"2d",
"canvas",
"engine",
"example",
"example-menu",
"game",
"game-engine",
"html",
"html5",
"javascript",
"pixel-art",
"theatrejs",
"webgl",
"webgl2"
],
"license": "MIT",
"name": "@theatrejs/example-menu",
"private": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/theatrejs/example-menu.git"
},
"scripts": {
"distribution": "npm run distribution:clean && npm run distribution:generate",
"distribution:clean": "rm -rf ./distribution/bundle/",
"distribution:generate": "webpack --config ./webpack.production.js",
"distribution:start": "webpack-dev-server --config ./webpack.development.js --port 1337",
"github-pages": "npm run github-pages:distribution && npm run github-pages:clean && npm run github-pages:copy",
"github-pages:clean": "rm -rf ./docs/",
"github-pages:copy": "cp -r ./distribution/ ./docs/",
"github-pages:distribution": "npm run distribution",
"start": "npm run distribution:start"
}
}