-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1002 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1002 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
{
"name": "umd-react",
"version": "19.2.5",
"description": "UMD builds for React 19+",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lofcz/umd-react.git"
},
"keywords": [
"react",
"umd"
],
"author": "Matěj \"lofcz\" Štágl",
"license": "MIT",
"bugs": {
"url": "https://github.com/lofcz/umd-react/issues"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"homepage": "https://github.com/lofcz/umd-react#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup": "^4.59.0"
},
"dependencies": {
"semver": "^7.7.4",
"umd-react": "file:"
}
}