This repository was archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.41 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
47
48
49
50
51
{
"name": "@m0ksem/bronze",
"version": "0.3.004",
"description": "WebGL game engine.",
"author": "Nedoshev Maksym (m0ksem)",
"main": "dist/Bronze.js",
"typings": "dist/Bronze.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/m0ksem/Bronze-Engine.git"
},
"scripts": {
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:docs": "typedoc --out docs ./src"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"babel-loader": "^8.0.5",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.5",
"babel-plugin-inline-import": "^3.0.0",
"jslint": "^0.12.1",
"modernizr": "^3.7.1",
"typedoc": "^0.14.2",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.4.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack-dev-server": "^3.3.1"
},
"keywords": [
"game",
"engine",
"bronze",
"game engine",
"WebGL"
]
}