forked from 3d-dice/dice-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.22 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
62
63
64
65
66
67
68
69
{
"name": "@3d-dice/dice-box",
"author": {
"name": "Frank Ali"
},
"description": "A 3D environment for rolling game dice",
"version": "1.0.5",
"keywords": [
"3D",
"dice",
"roll",
"roller",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"license": "MIT",
"homepage": "https://fantasticdice.games/",
"repository": {
"type": "git",
"url": "https://github.com/3d-dice/dice-box"
},
"bugs": {
"url": "https://github.com/3d-dice/dice-box/issues"
},
"files": [
"dist",
"copyAssets.js"
],
"main": "./dist/dice-box.es.js",
"dev-files": [
"src"
],
"dev-main": "./src/index",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"postinstall": "node copyAssets.js"
},
"dependencies": {
"@babylonjs/core": "^5.10.0",
"@babylonjs/loaders": "^5.10.0",
"@babylonjs/materials": "^5.10.0",
"copy-dir": "^1.3.0",
"node-abort-controller": "^3.0.1"
},
"devDependencies": {
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-visualizer": "^5.6.0",
"vite": "^2.9.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all",
"not ie all"
]
}
}