This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "v3d-core",
"version": "1.0.15",
"description": "WebGL-based humanoid model rendering engine.",
"main": "dist/v3dcore.es6.js",
"scripts": {
"test": "echo \\\"Error: no test2 specified\\\" && exit 1",
"build": "webpack --config webpack.config.js",
"lint": "tslint -p .",
"debug": "webpack-dev-server --config webpack.test.config.js"
},
"keywords": [
"babylon.js",
"VRM",
"MToon",
"WebGL"
],
"files": [
"dist",
"dist/src/index.d.ts",
"dist/src/index.js",
"dist/src/index.js.map",
"dist/src/v3d-core.d.ts",
"dist/src/v3d-core.js",
"dist/src/v3d-core.js.map",
"dist/src/helper.d.ts",
"dist/src/helper.js",
"dist/src/helper.js.map",
"dist/src/importer/loader-observer.d.ts",
"dist/src/importer/loader-observer.js",
"dist/src/importer/loader-observer.js.map",
"dist/src/importer/loader-observer.d.ts",
"dist/src/importer/babylon-vrm-loader/src",
"dist/src/scene",
"dist/src/shader/babylon-mtoon-material/src",
"dist/src/utilities"
],
"author": "Phantom Development",
"license": "MPL-2.0",
"devDependencies": {
"@types/node": "^16.7.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@babylonjs/core": "^5.0.0-alpha.62",
"@babylonjs/gui": "^5.0.0-alpha.62",
"@babylonjs/inspector": "^5.0.0-alpha.62",
"@babylonjs/loaders": "^5.0.0-alpha.62",
"@babylonjs/materials": "^5.0.0-alpha.62",
"@babylonjs/serializers": "^5.0.0-alpha.62",
"babylonjs-gltf2interface": "^5.0.0-alpha.62"
}
}