-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
84 lines (84 loc) · 1.89 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
80
81
82
83
84
{
"name": "@public-ui/theme-default",
"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": "Contains the default theme for KoliBri - The accessible HTML-Standard.",
"keywords": [
"accessibility",
"accessible",
"bitv",
"designsystem",
"design",
"web components",
"webcomponents",
"aria",
"wai",
"axe",
"custom elements",
"styleguide",
"style",
"guide",
"ui",
"html",
"css",
"web",
"a11y",
"w3c",
"webstandard",
"wcag"
],
"scripts": {
"build": "unbuild",
"format": "prettier --check src",
"lint": "eslint src && tsc --noemit",
"prepack": "unbuild",
"test": "THEME_MODULE=dist THEME_EXPORT=DEFAULT kolibri-visual-test",
"test-update": "THEME_MODULE=dist THEME_EXPORT=DEFAULT kolibri-visual-test --update-snapshots theme-snapshots.spec.js",
"pretest": "pnpm build",
"pretest-update": "pnpm build"
},
"devDependencies": {
"@public-ui/schema": "workspace:*",
"@public-ui/visual-tests": "workspace:*",
"@types/node": "ts5.4",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"eslint": "8.57.0",
"eslint-plugin-no-loops": "0.3.0",
"rollup-plugin-postcss": "4.0.2",
"typescript": "5.4.5",
"unbuild": "1.2.1"
},
"peerDependencies": {
"@public-ui/components": "workspace:*"
},
"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": [
"assets",
"dist"
]
}