-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "h5tiny",
"version": "2.2.3",
"description": "Fast and tiny JavaScript library for HTML5 game and creatives developing.",
"main": "./build/tiny.js",
"files": [
"src",
"build",
"plugins",
"examples/js",
"examples/jsm",
"README.md"
],
"directories": {
"examples": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/peter-hutsul/h5tiny"
},
"scripts": {
"serve": "webpack-dev-server --port 3000 --open --live-reload --mode development --watch-files examples --static-directory examples",
"watch": "webpack --config webpack.dev.js --watch",
"dev": "start npm run watch && npm run serve",
"build": "webpack --config webpack.build.js"
},
"keywords": [
"2d",
"html5",
"canvas",
"game",
"tiny",
"javascript",
"playable",
"three"
],
"author": "Peter Hutsul",
"license": "ISC",
"devDependencies": {
"terser-webpack-plugin": "^5.3.6",
"three": "^0.112.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
}
}