@public-ui/themes 1.7.0-rc.13 → 1.7.0-rc.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,79 +1,80 @@
1
1
  {
2
- "name": "@public-ui/themes",
3
- "version": "1.7.0-rc.13",
4
- "license": "EUPL-1.2",
5
- "homepage": "https://public-ui.github.io",
6
- "repository": "https://github.com/public-ui/kolibri",
7
- "bugs": {
8
- "url": "https://github.com/public-ui/kolibri/issues",
9
- "email": "kolibri@itzbund.de"
10
- },
11
- "author": {
12
- "name": "Informationstechnikzentrum Bund",
13
- "email": "kolibri@itzbund.de"
14
- },
15
- "description": "Contains the style guides and themes of various corporate designs for KoliBri - The accessible HTML-Standard.",
16
- "keywords": [
17
- "accessibility",
18
- "accessible",
19
- "bitv",
20
- "framework",
21
- "library",
22
- "designsystem",
23
- "design",
24
- "system",
25
- "web components",
26
- "webcomponents",
27
- "aria",
28
- "wai",
29
- "axe",
30
- "custom elements",
31
- "styleguide",
32
- "style",
33
- "guide",
34
- "ui",
35
- "html",
36
- "css",
37
- "web",
38
- "a11y",
39
- "w3c",
40
- "webstandard",
41
- "wcag"
42
- ],
43
- "scripts": {
44
- "build": "unbuild",
45
- "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*",
46
- "format": "prettier --check src",
47
- "lint": "eslint src && tsc --noemit",
48
- "prepack": "unbuild"
49
- },
50
- "devDependencies": {
51
- "@public-ui/schema": "1.7.0-rc.13",
52
- "@types/node": "ts5.1",
53
- "@typescript-eslint/eslint-plugin": "6.7.2",
54
- "@typescript-eslint/parser": "6.7.2",
55
- "eslint": "8.49.0",
56
- "eslint-plugin-no-loops": "0.3.0",
57
- "typescript": "5.2.2",
58
- "unbuild": "1.2.1"
59
- },
60
- "peerDependencies": {
61
- "@public-ui/components": "1.7.0-rc.13"
62
- },
63
- "sideEffects": false,
64
- "type": "module",
65
- "exports": {
66
- ".": {
67
- "types": "./dist/index.d.ts",
68
- "import": "./dist/index.mjs",
69
- "require": "./dist/index.cjs"
70
- }
71
- },
72
- "main": "./dist/index.cjs",
73
- "module": "./dist/index.mjs",
74
- "types": "./dist/index.d.ts",
75
- "files": [
76
- "assets",
77
- "dist"
78
- ]
79
- }
2
+ "name": "@public-ui/themes",
3
+ "version": "1.7.0-rc.15",
4
+ "license": "EUPL-1.2",
5
+ "homepage": "https://public-ui.github.io",
6
+ "repository": "https://github.com/public-ui/kolibri",
7
+ "bugs": {
8
+ "url": "https://github.com/public-ui/kolibri/issues",
9
+ "email": "kolibri@itzbund.de"
10
+ },
11
+ "author": {
12
+ "name": "Informationstechnikzentrum Bund",
13
+ "email": "kolibri@itzbund.de"
14
+ },
15
+ "description": "Contains the style guides and themes of various corporate designs for KoliBri - The accessible HTML-Standard.",
16
+ "keywords": [
17
+ "accessibility",
18
+ "accessible",
19
+ "bitv",
20
+ "framework",
21
+ "library",
22
+ "designsystem",
23
+ "design",
24
+ "system",
25
+ "web components",
26
+ "webcomponents",
27
+ "aria",
28
+ "wai",
29
+ "axe",
30
+ "custom elements",
31
+ "styleguide",
32
+ "style",
33
+ "guide",
34
+ "ui",
35
+ "html",
36
+ "css",
37
+ "web",
38
+ "a11y",
39
+ "w3c",
40
+ "webstandard",
41
+ "wcag"
42
+ ],
43
+ "devDependencies": {
44
+ "@public-ui/schema": "1.7.0-rc.15",
45
+ "@types/node": "ts5.1",
46
+ "@typescript-eslint/eslint-plugin": "6.7.2",
47
+ "@typescript-eslint/parser": "6.7.2",
48
+ "eslint": "8.50.0",
49
+ "eslint-plugin-no-loops": "0.3.0",
50
+ "nodemon": "3.0.1",
51
+ "typescript": "5.2.2",
52
+ "unbuild": "1.2.1"
53
+ },
54
+ "peerDependencies": {
55
+ "@public-ui/components": "1.7.0-rc.15"
56
+ },
57
+ "sideEffects": false,
58
+ "type": "module",
59
+ "exports": {
60
+ ".": {
61
+ "types": "./dist/index.d.ts",
62
+ "import": "./dist/index.mjs",
63
+ "require": "./dist/index.cjs"
64
+ }
65
+ },
66
+ "main": "./dist/index.cjs",
67
+ "module": "./dist/index.mjs",
68
+ "types": "./dist/index.d.ts",
69
+ "files": [
70
+ "assets",
71
+ "dist"
72
+ ],
73
+ "scripts": {
74
+ "build": "unbuild",
75
+ "depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*",
76
+ "format": "prettier --check src",
77
+ "lint": "eslint src && tsc --noemit",
78
+ "dev": "nodemon --ignore dist -e ts,tsx --exec 'pnpm build'"
79
+ }
80
+ }