-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "react-minecraft-viewer",
"version": "2.0.2",
"description": "A Minecraft viewer built with React",
"keywords": [
"minecraft",
"react",
"render",
"anvil"
],
"author": "xrosecky",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roseckyj/react-minecraft-render"
},
"bugs": {
"url": "https://github.com/roseckyj/react-minecraft-render/issues"
},
"homepage": "https://github.com/roseckyj/react-minecraft-render",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"dependencies": {
"deepslate": "^0.19.2",
"gl-matrix": "^3.4.3",
"jszip": "^3.10.1"
},
"scripts": {
"start": "react-scripts start",
"build": "tsc --project tsconfig.build.json",
"major": "npm version major && npm run build && npm publish",
"minor": "npm version minor && npm run build && npm publish",
"patch": "npm version patch && npm run build && npm publish",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"react-app-rewired": "^2.2.1",
"react-error-overlay": "^6.0.9",
"react-scripts": "^5.0.1",
"tslib": "^2.8.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}