-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 2.84 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "cookieproof",
"version": "0.1.0",
"description": "GDPR & IMY 2026 compliant cookie consent Web Component with Shadow DOM, Google Consent Mode V2, and script-gate engine",
"type": "module",
"main": "dist/cookieproof.umd.js",
"module": "dist/cookieproof.esm.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/cookieproof.esm.js",
"require": "./dist/cookieproof.umd.js",
"types": "./dist/src/index.d.ts"
},
"./integrations": {
"types": "./dist/integrations/index.d.ts",
"import": "./dist/integrations/index.esm.js",
"require": "./dist/integrations/index.umd.js"
},
"./integrations/*": {
"types": "./dist/integrations/*.d.ts",
"import": "./dist/integrations/*.esm.js",
"require": "./dist/integrations/*.umd.js"
},
"./react": {
"types": "./wrappers/react.tsx",
"import": "./wrappers/react.tsx",
"default": "./wrappers/react.tsx"
},
"./vue": {
"types": "./wrappers/vue.ts",
"import": "./wrappers/vue.ts",
"default": "./wrappers/vue.ts"
}
},
"files": [
"dist/",
"!dist/**/*.map",
"wrappers/",
"src/core/types.ts",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"size": "npm run build && node scripts/check-size.mjs",
"test:e2e": "playwright test",
"test:all": "bun run test && playwright test",
"prepublishOnly": "npm run build"
},
"keywords": [
"cookie-consent",
"gdpr",
"imy",
"web-component",
"shadow-dom",
"google-consent-mode",
"privacy",
"compliance"
],
"author": "Bright Interaction",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/bright-interaction/cookieproof"
},
"homepage": "https://consent.example.com",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/react": ">=17",
"happy-dom": "^20.11.1",
"http-server": "^14.1.1",
"react": ">=17",
"rollup": "^4.62.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10",
"vue": ">=3"
},
"overrides": {
"serialize-javascript": ">=7.0.3",
"postcss": "^8.5.18",
"picomatch": "^2.3.2"
},
"peerDependencies": {
"react": ">=17",
"vue": ">=3",
"@types/react": ">=17"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
},
"@types/react": {
"optional": true
}
},
"sideEffects": [
"dist/cookieproof.esm.js",
"dist/cookieproof.umd.js"
],
"dependencies": {
"@sentry/bun": "^10.68.0"
}
}