-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@ui5/webcomponents-react-compat",
"version": "2.1.0",
"description": "React Wrapper for UI5 Web Components Compat package",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./styles.css": "./dist/css/index.css",
"./dist/*": "./dist/*",
"./dist/*.js": "./dist/*.js"
},
"homepage": "https://sap.github.io/ui5-webcomponents-react",
"repository": {
"type": "git",
"url": "https://github.com/SAP/ui5-webcomponents-react.git",
"directory": "packages/compat"
},
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"sideEffects": [
"./dist/Assets.js",
"./dist/json-imports/*"
],
"scripts": {
"clean": "rimraf dist tmp",
"build:css": "postcss --base src --dir dist/css src/**/*.css",
"build:css-bundle": "node ../../config/merge-css-modules.js",
"build:version-info": "node ../../scripts/generate-version-info.js",
"watch:css": "yarn build:css --watch"
},
"dependencies": {
"clsx": "2.1.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"@ui5/webcomponents-compat": "~2.2.0",
"@ui5/webcomponents-react": "~2.1.0",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"@ui5/webcomponents-base": {
"optional": true
},
"@ui5/webcomponents-icons": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"NOTICE.txt",
"README.md"
]
}