-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.88 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@reactunity/scripts",
"version": "0.21.0",
"description": "Configuration and scripts for React Unity.",
"repository": {
"type": "git",
"url": "https://github.com/ReactUnity/scripts.git"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/ReactUnity/scripts/issues"
},
"files": [
"bin",
"config",
"lib",
"scripts",
"tsconfig.json"
],
"bin": {
"react-unity-scripts": "./bin/react-unity-scripts.js"
},
"types": "./lib/types/main.d.ts",
"typesVersions": {
"*": {
"main": [
"./lib/types/main.d.ts"
],
"editor": [
"./lib/types/editor.d.ts"
],
"tests": [
"./lib/types/tests.d.ts"
],
"ugui": [
"./lib/types/ugui.d.ts"
],
"uitoolkit": [
"./lib/types/uitoolkit.d.ts"
]
}
},
"tsconfig": "./tsconfig.json",
"dependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.27.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.0",
"@svgr/webpack": "^8.1.0",
"@types/react": "^19.1.8",
"@types/webpack-env": "^1.18.8",
"babel-jest": "^30.0.2",
"babel-loader": "^10.0.0",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.1.0",
"bfj": "^9.1.2",
"camelcase": "^8.0.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"confusing-browser-globals": "^1.0.11",
"css-loader": "^7.1.2",
"dotenv": "^16.5.0",
"dotenv-expand": "^12.0.2",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"fs-extra": "^11.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.3",
"jest-resolve": "^30.0.2",
"jest-watch-typeahead": "^3.0.1",
"mini-css-extract-plugin": "^2.9.2",
"null-loader": "^4.0.1",
"postcss": "^8.5.6",
"postcss-loader": "^8.1.1",
"prompts": "^2.4.2",
"raw-loader": "^4.0.2",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.17.0",
"resolve": "^1.22.10",
"resolve-url-loader": "^5.0.0",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"semver": "^7.7.2",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "^4.1.10",
"terser-webpack-plugin": "^5.3.14",
"url-loader": "^4.1.1",
"webpack": "^5.99.9",
"webpack-dev-server": "^5.2.2",
"webpack-manifest-plugin": "^5.0.1"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"peerDependencies": {
"@reactunity/previewer": "*",
"@reactunity/renderer": ">=0.20.0",
"react": "^19.0.0",
"typescript": ">=5"
},
"peerDependenciesMeta": {
"@reactunity/previewer": {
"optional": true
},
"typescript": {
"optional": true
}
}
}