forked from ssatguru/BabylonJS-CharacterController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 964 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 964 Bytes
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
{
"name": "babylonjs-charactercontroller",
"version": "0.4.4",
"description": "A CharacterController for BabylonJS",
"repository": {
"type": "git",
"url": "git://github.com/ssatguru/BabylonJS-CharacterController.git"
},
"keywords": [
"babylonjs",
"CharacterController"
],
"author": "satguru <ssatguru@gmail.com>",
"license": "Apache-2.0",
"contributors": [],
"main": "dist/CharacterController.js",
"types": "dist/CharacterController.d.ts",
"devDependencies": {
"babylonjs": "^4.2.0",
"babylonjs-inspector": "^4.2.0",
"babylonjs-loaders": "^4.2.0",
"terser-webpack-plugin": "^1.4.3",
"ts-loader": "^5.4.5",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"start": "webpack-dev-server --open-page /tst/test.html",
"build-dev": "webpack --mode=development",
"build": "webpack --mode=production"
}
}