-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 958 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 958 Bytes
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
{
"name": "onejs-react",
"version": "0.1.21",
"description": "React 19 renderer for OneJS (Unity UI Toolkit)",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"src"
],
"keywords": [
"react",
"unity",
"ui-toolkit",
"onejs",
"game-ui",
"renderer"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Singtaa/onejs-react.git"
},
"author": "Singtaa",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"react-reconciler": "^0.31.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.0.0",
"@types/react-reconciler": "^0.28.9",
"react": "^19.0.0",
"typescript": "^5.7.0",
"unity-types": "file:../unity-types",
"vitest": "^2.1.0"
},
"license": "MIT"
}