forked from 3d-dice/dice-box-threejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 945 Bytes
/
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
{
"name": "@nnmbzr/dice-box-threejs",
"author": {
"name": "NNMBZR"
},
"description": "A 3D environment for rolling game dice using threejs and cannon-es",
"private": false,
"keywords": [
"3D",
"dice",
"roll",
"roller",
"javascript",
"rpg",
"dnd",
"d&d",
"tabletop"
],
"version": "0.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nnmbzr/dice-box-threejs"
},
"bugs": {
"url": "https://github.com/nnmbzr/dice-box-threejs/issues"
},
"forkedFrom": "https://github.com/nnmbzr/dice-box-threejs",
"dev-files": [
"src"
],
"dev-main": "./src/index",
"file": [
"dist",
"public"
],
"main": "./dist/dice-box-threejs.es.js",
"scripts": {
"dev": "vite",
"build": "vite build --watch",
"preview": "vite preview"
},
"devDependencies": {
"cannon-es-debugger": "^1.0.0",
"vite": "^3.0.8"
},
"dependencies": {
"cannon-es": "^0.20.0",
"three": "^0.143.0"
}
}