forked from jeffreylanters/react-unity-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "react-unity-webgl",
"version": "8.7.5",
"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": "[email protected]"
},
"license": "Apache-2.0",
"author": {
"name": "Jeffrey Lanters",
"email": "[email protected]",
"url": "https://jeffreylanters.nl"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jeffreylanters"
},
{
"type": "paypal",
"url": "https://paypal.me/jeffreylanters"
}
],
"main": "./distribution/index.js",
"types": "./distribution/index.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",
"generate-gh-pages": "rm -rf ./gh-pages && cp -r ./documentation ./gh-pages && node ./scripts/generate-markdown.js"
},
"devDependencies": {
"@types/react": "17.0.39",
"typescript": "4.5.4"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"private": false
}