-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.92 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
{
"name": "@reactunity/scripts",
"version": "0.23.0",
"description": "Configuration and scripts for React Unity.",
"repository": {
"type": "git",
"url": "git+https://github.com/ReactUnity/core.git",
"directory": "packages/scripts"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/ReactUnity/core/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": "^8.0.1",
"@babel/plugin-transform-runtime": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@babel/preset-react": "^8.0.1",
"@babel/preset-typescript": "^8.0.1",
"@babel/runtime": "^8.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@svgr/webpack": "^8.1.0",
"@types/react": "^19.2.17",
"@types/webpack-env": "^1.18.8",
"babel-jest": "^30.4.1",
"babel-loader": "^10.1.1",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-named-asset-import": "^0.3.8",
"bfj": "^9.1.3",
"camelcase": "^9.0.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"confusing-browser-globals": "^1.0.11",
"css-loader": "^7.1.4",
"dotenv": "^17.4.2",
"dotenv-expand": "^13.0.0",
"file-loader": "^6.2.0",
"fs-extra": "^11.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.4.2",
"jest-resolve": "^30.4.1",
"jest-watch-typeahead": "^3.0.1",
"jsonc-parser": "^3.3.1",
"mini-css-extract-plugin": "^2.10.2",
"null-loader": "^4.0.1",
"postcss": "^8.5.24",
"postcss-loader": "^8.2.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.18.0",
"resolve": "^1.22.12",
"resolve-url-loader": "^5.0.0",
"sass": "^1.102.0",
"sass-loader": "^17.0.0",
"semver": "^7.8.5",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "^4.3.3",
"terser-webpack-plugin": "^5.6.1",
"url-loader": "^4.1.1",
"webpack": "^5.109.1",
"webpack-dev-server": "^6.0.0",
"webpack-manifest-plugin": "^6.0.1"
},
"devDependencies": {
"typescript": "^7.0.2"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"peerDependencies": {
"@reactunity/renderer": ">=0.20.0",
"react": "^19.0.0",
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"homepage": "https://github.com/ReactUnity/core/tree/main/packages/scripts#readme",
"publishConfig": {
"access": "public"
}
}