@consent.software/catalog 2.0.0 → 2.0.2
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/.smartconfig.json +55 -0
- package/dist_bundle/bundle.js +221 -238
- package/dist_bundle/bundle.js.map +1 -7
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/consentsoftware-cookieconsent.d.ts +3 -0
- package/dist_ts_web/elements/consentsoftware-cookieconsent.js +71 -44
- package/dist_ts_web/elements/consentsoftware-tabs.js +1 -1
- package/dist_ts_web/elements/consentsoftware-toggle.js +3 -3
- package/dist_watch/bundle.js +95 -63
- package/dist_watch/bundle.js.map +3 -3
- package/license.md +21 -0
- package/package.json +9 -7
- package/readme.md +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/consentsoftware-cookieconsent.ts +82 -46
- package/ts_web/elements/consentsoftware-tabs.ts +2 -2
- package/ts_web/elements/consentsoftware-toggle.ts +2 -2
- package/npmextra.json +0 -31
- package/readme.hints.md +0 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@git.zone/cli": {
|
|
3
|
+
"schemaVersion": 2,
|
|
4
|
+
"projectType": "wcc",
|
|
5
|
+
"module": {
|
|
6
|
+
"githost": "code.foss.global",
|
|
7
|
+
"gitscope": "consent.software",
|
|
8
|
+
"gitrepo": "catalog",
|
|
9
|
+
"description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
|
|
10
|
+
"npmPackagename": "@consent.software/catalog",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"projectDomain": "consent.software",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"consent management",
|
|
15
|
+
"web components",
|
|
16
|
+
"cookie consent",
|
|
17
|
+
"privacy compliance",
|
|
18
|
+
"GDPR",
|
|
19
|
+
"ES modules",
|
|
20
|
+
"frontend",
|
|
21
|
+
"typescript",
|
|
22
|
+
"user privacy",
|
|
23
|
+
"modern web"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"commit": {
|
|
27
|
+
"confirmation": "prompt",
|
|
28
|
+
"steps": ["analyze", "changelog", "commit"]
|
|
29
|
+
},
|
|
30
|
+
"release": {
|
|
31
|
+
"confirmation": "prompt",
|
|
32
|
+
"preflight": {
|
|
33
|
+
"test": true,
|
|
34
|
+
"build": true
|
|
35
|
+
},
|
|
36
|
+
"targets": {
|
|
37
|
+
"git": {
|
|
38
|
+
"enabled": true,
|
|
39
|
+
"remote": "origin",
|
|
40
|
+
"pushBranch": true,
|
|
41
|
+
"pushTags": true
|
|
42
|
+
},
|
|
43
|
+
"npm": {
|
|
44
|
+
"enabled": true,
|
|
45
|
+
"registries": ["https://registry.npmjs.org", "https://verdaccio.lossless.digital"],
|
|
46
|
+
"accessLevel": "public",
|
|
47
|
+
"alreadyPublished": "success"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"@git.zone/tswatch": {
|
|
53
|
+
"preset": "element"
|
|
54
|
+
}
|
|
55
|
+
}
|