@privacykit/web 0.1.0
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 +18 -0
- package/readme.md +5 -0
- package/src/index.ts +1 -0
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@privacykit/web",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Developer-friendly GDPR consent management with real enforcement.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"gdpr",
|
|
8
|
+
"consent",
|
|
9
|
+
"cookie-consent",
|
|
10
|
+
"cmp",
|
|
11
|
+
"privacy"
|
|
12
|
+
],
|
|
13
|
+
"author": "PrivacyKit",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"typescript": "^6.0.3"
|
|
17
|
+
}
|
|
18
|
+
}
|
package/readme.md
ADDED
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const PRIVACYKIT_PACKAGE_VERSION = "0.1.0";
|