-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "@reactunity/renderer",
"version": "0.19.1",
"description": "React renderer for Unity3D",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./test": "./dist/test.js",
"./ugui": "./dist/ugui/index.js",
"./ugui/*": "./dist/ugui/*.js",
"./uitoolkit": "./dist/uitoolkit/index.js",
"./uitoolkit/*": "./dist/uitoolkit/*.js",
"./editor": "./dist/editor/index.js",
"./editor/*": "./dist/editor/*.js",
"./webgl-compat": "./dist/webgl-compat.js"
},
"scripts": {
"build:clean": "rimraf dist",
"build:base": "tsc",
"build": "yarn build:clean && yarn build:base",
"prepare": "yarn build",
"watch": "tsc --watch",
"lint": "react-unity-scripts lint",
"version": "node version.js && git add src/version.ts"
},
"author": "Gokhan Kurt <[email protected]> (https://github.com/KurtGokhan)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ReactUnity/renderer"
},
"keywords": [
"react",
"react-renderer",
"unity",
"unity3d"
],
"dependencies": {
"react-reconciler": "^0.29.2",
"use-sync-external-store": "^1.2.2"
},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@reactunity/scripts": "^0.19.1",
"@types/react-reconciler": "^0.28.8",
"react-unity-webgl": "^9.6.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}