forked from jeffreylanters/react-unity-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "react-unity-webgl",
"version": "8.5.1",
"description": "React Unity WebGL provides an easy solution for embedding Unity WebGL builds in your React application, with two-way communication between your React and Unity application with advanced API's.",
"keywords": [
"React",
"Unity",
"WebGL"
],
"homepage": "https://github.com/jeffreylanters/react-unity-webgl#readme",
"bugs": {
"url": "https://github.com/jeffreylanters/react-unity-webgl/issues",
"email": "jeffreylanters@me.com"
},
"license": "Apache-2.0",
"author": {
"name": "Jeffrey Lanters",
"email": "jeffreylanters@me.com",
"url": "https://jeffreylanters.nl"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jeffreylanters"
},
{
"type": "paypal",
"url": "https://paypal.me/jeffreylanters"
}
],
"main": "./distribution/exports.js",
"types": "./distribution/exports.d.ts",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git://github.com/jeffreylanters/react-unity-webgl.git"
},
"scripts": {
"start": "tsc --watch",
"test": "echo 'Please use the test environment'",
"compile": "tsc",
"package": "npm pack"
},
"devDependencies": {
"@types/react": "17.0.18",
"typescript": "4.3.5"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"private": false
}