-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
79 lines (79 loc) · 1.44 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
74
75
76
77
78
79
{
"name": "@public-ui/preact",
"version": "1.7.23",
"license": "EUPL-1.2",
"homepage": "https://public-ui.github.io",
"repository": {
"type": "git",
"url": "https://github.com/public-ui/kolibri"
},
"bugs": {
"url": "https://github.com/public-ui/kolibri/issues",
"email": "kolibri@itzbund.de"
},
"author": {
"name": "Informationstechnikzentrum Bund",
"email": "kolibri@itzbund.de"
},
"description": "Preact framework adapter for KoliBri - The accessible HTML-Standard.",
"keywords": [
"accessibility",
"accessible",
"bitv",
"framework",
"library",
"designsystem",
"design",
"system",
"web components",
"webcomponents",
"aria",
"wai",
"axe",
"custom elements",
"styleguide",
"style",
"guide",
"ui",
"html",
"css",
"web",
"a11y",
"w3c",
"webstandard",
"wcag",
"preact"
],
"scripts": {
"build": "unbuild",
"prepack": "unbuild"
},
"dependencies": {
"@public-ui/react": "workspace:*"
},
"devDependencies": {
"@public-ui/components": "workspace:*",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.4.5",
"unbuild": "1.2.1"
},
"peerDependencies": {
"preact": ">=10.22.0"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}