-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
{
"name": "@analytics-debugger/consent-modal",
"version": "1.0.1",
"description": "Lightweight cookie consent modal with Shadow DOM encapsulation, Google Consent Mode v2, i18n, and dark mode. Zero dependencies, ~6KB gzipped.",
"type": "module",
"main": "dist/dta-cm.umd.js",
"module": "dist/dta-cm.js",
"unpkg": "dist/dta-cm.umd.js",
"jsdelivr": "dist/dta-cm.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/dta-cm.js",
"require": "./dist/dta-cm.umd.js",
"types": "./dist/index.d.ts"
},
"./i18n/*": "./i18n/*"
},
"files": [
"dist",
"i18n",
"templates",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"keywords": [
"consent",
"cookie",
"cookie-consent",
"gdpr",
"ccpa",
"privacy",
"google-consent-mode",
"gcm-v2",
"analytics",
"shadow-dom",
"i18n",
"dark-mode",
"web-component"
],
"author": "Analytics Debugger <contact@analytics-debugger.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/analytics-debugger/consent-modal"
},
"homepage": "https://www.analytics-debugger.com/tools/consent-modal",
"bugs": {
"url": "https://github.com/analytics-debugger/consent-modal/issues"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.0",
"happy-dom": "^20.8.4",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vitest": "^4.1.0"
}
}