-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 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
52
53
54
55
56
57
58
{
"name": "react-3d-dice",
"version": "0.1.0",
"description": "3D dice renderer for React using Three.js. Supports D4, D6, D8, D10, D12, D20 with face labels, settle animations, and dot pips.",
"type": "module",
"main": "dist/react-3d-dice.cjs.js",
"module": "dist/react-3d-dice.es.js",
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./dist/react-3d-dice.es.js",
"require": "./dist/react-3d-dice.cjs.js"
}
},
"sideEffects": false,
"files": [
"dist",
"src/index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"three": ">=0.150.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.172.0",
"vite": "^6.1.0"
},
"keywords": [
"react",
"dice",
"3d",
"three.js",
"d20",
"d6",
"tabletop",
"rpg",
"dnd",
"board-game"
],
"author": "Hunter / BosDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChefJulio/react-3d-dice.git"
},
"homepage": "https://github.com/ChefJulio/react-3d-dice#readme"
}