-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
73 lines (73 loc) · 1.42 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": "@public-ui/react-standalone",
"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": "React framework standalone 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",
"react"
],
"scripts": {
"build": "pnpm prepare && node scripts/make-standalone.js",
"prepack": "pnpm build",
"prepare": "rimraf dist && cpy \"node_modules/@public-ui/react/dist/*.mjs\" dist --dot"
},
"devDependencies": {
"@public-ui/react": "workspace:*",
"cpy-cli": "5.0.0",
"rimraf": "5.0.7"
},
"peerDependencies": {
"@public-ui/components": "workspace:*",
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"files": [
"dist"
]
}