-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.18 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.18 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
{
"name": "@ui5/webcomponents-react-base",
"version": "2.17.0",
"description": "Base for ui5-webcomponents-react",
"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",
"./dist": "./dist/index.js",
"./dist/*": "./dist/*",
"./dist/*.js": "./dist/*.js",
"./Device": {
"types": "./dist/Device/index.d.ts",
"default": "./dist/Device/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.js"
},
"./VersionInfo": {
"types": "./dist/generated/VersionInfo.d.ts",
"default": "./dist/generated/VersionInfo.js"
},
"./I18nStore": {
"types": "./dist/internal/stores/I18nStore.d.ts",
"default": "./dist/internal/stores/I18nStore.js"
},
"./StyleStore": {
"types": "./dist/internal/stores/StyleStore.d.ts",
"default": "./dist/internal/stores/StyleStore.js"
},
"./CssSizeVariables": {
"types": "./dist/internal/styling/CssSizeVariables.d.ts",
"default": "./dist/internal/styling/CssSizeVariables.js"
},
"./ThemingParameters": {
"types": "./dist/styling/ThemingParameters.d.ts",
"default": "./dist/styling/ThemingParameters.js"
},
"./withWebComponent": {
"types": "./dist/internal/wrapper/withWebComponent.d.ts",
"default": "./dist/internal/wrapper/withWebComponent.js"
},
"./utils": {
"types": "./dist/internal/utils/index.d.ts",
"default": "./dist/internal/utils/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
},
"./internal/addCustomCSSWithScoping.js": "./dist/internal/utils/addCustomCSSWithScoping.js",
"./internal/hooks": {
"types": "./dist/internal/hooks/index.d.ts",
"default": "./dist/internal/hooks/index.js"
},
"./internal/types": {
"types": "./dist/internal/types/index.d.ts",
"default": "./dist/internal/types/index.js"
},
"./internal/utils": {
"types": "./dist/internal/utils/index.d.ts",
"default": "./dist/internal/utils/index.js"
},
"./internal/*": {
"types": "./dist/internal/*.d.ts",
"default": "./dist/internal/*.js"
}
},
"homepage": "https://ui5.github.io/webcomponents-react",
"repository": {
"type": "git",
"url": "https://github.com/UI5/webcomponents-react.git",
"directory": "packages/base"
},
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build:version-info": "node ../../scripts/generate-version-info.js"
},
"peerDependencies": {
"@types/react": "*",
"@ui5/webcomponents-base": "~2.17.0 || ~2.18.0",
"react": "^18 || ^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@ui5/webcomponents-base": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"NOTICE.txt",
"README.md"
]
}