@consenttheater/playbill 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 ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@consenttheater/playbill",
3
+ "version": "0.1.0",
4
+ "description": "An open-source, tiered knowledge base of GDPR-relevant web trackers (cookies, domains, companies) with pure-function matching and risk-scoring utilities. Standalone library for privacy auditors, compliance scanners, consent platforms, browser extensions, and research tools.",
5
+ "author": {
6
+ "name": "ConsentTheater",
7
+ "email": "developer@consenttheater.org",
8
+ "url": "https://consenttheater.org"
9
+ },
10
+ "license": "AGPL-3.0-or-later",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/consenttheater/playbill.git"
14
+ },
15
+ "homepage": "https://github.com/consenttheater/playbill",
16
+ "keywords": [
17
+ "gdpr",
18
+ "privacy",
19
+ "cookies",
20
+ "trackers",
21
+ "consent",
22
+ "compliance",
23
+ "tracking-database",
24
+ "cookie-database",
25
+ "adtech",
26
+ "browser-fingerprinting",
27
+ "data-protection"
28
+ ],
29
+ "type": "module",
30
+ "main": "./dist/index.js",
31
+ "module": "./dist/index.js",
32
+ "types": "./dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "import": "./dist/index.js",
36
+ "types": "./dist/index.d.ts"
37
+ },
38
+ "./actors/advertising": { "import": "./dist/actors/advertising.json" },
39
+ "./actors/analytics": { "import": "./dist/actors/analytics.json" },
40
+ "./actors/marketing": { "import": "./dist/actors/marketing.json" },
41
+ "./actors/functional": { "import": "./dist/actors/functional.json" },
42
+ "./actors/social": { "import": "./dist/actors/social.json" },
43
+ "./actors/session-recording": { "import": "./dist/actors/session_recording.json" },
44
+ "./actors/data-leak": { "import": "./dist/actors/data_leak.json" },
45
+ "./actors/security": { "import": "./dist/actors/security.json" },
46
+ "./actors/consent": { "import": "./dist/actors/consent.json" },
47
+ "./actors/fingerprinting": { "import": "./dist/actors/fingerprinting.json" },
48
+ "./actors/tag-manager": { "import": "./dist/actors/tag_manager.json" },
49
+ "./matcher": {
50
+ "import": "./dist/matcher.js",
51
+ "types": "./dist/matcher.d.ts"
52
+ },
53
+ "./scorer": {
54
+ "import": "./dist/scorer.js",
55
+ "types": "./dist/scorer.d.ts"
56
+ },
57
+ "./types": {
58
+ "types": "./dist/types.d.ts"
59
+ }
60
+ },
61
+ "files": [
62
+ "dist",
63
+ "README.md",
64
+ "LICENSE"
65
+ ],
66
+ "scripts": {
67
+ "normalize": "node scripts/normalize.js",
68
+ "build": "tsc",
69
+ "test": "vitest run",
70
+ "prepublishOnly": "npm run build"
71
+ },
72
+ "devDependencies": {
73
+ "typescript": "^5.9.3",
74
+ "vitest": "^4.1.4"
75
+ },
76
+ "engines": {
77
+ "node": ">=22.0.0"
78
+ }
79
+ }