-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 3.8 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@structured-world/vue-privacy",
"version": "1.10.0",
"description": "Add Google Analytics (GA4) to Vue 3, VitePress, and Quasar with one line of code. Works with Nuxt 3 via the Vue plugin. GDPR/CCPA compliant cookie consent with Google Consent Mode v2, EU auto-detection, and SPA page tracking.",
"license": "Apache-2.0",
"author": "Dmitry Prudnikov <mail@polaz.com>",
"packageManager": "yarn@4.12.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/vue-privacy.umd.cjs"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue/index.js"
},
"./vitepress": {
"types": "./dist/vitepress/index.d.ts",
"import": "./dist/vitepress/index.js"
},
"./quasar": {
"types": "./dist/quasar/index.d.ts",
"import": "./dist/quasar/index.js"
},
"./vanilla": {
"types": "./dist/vanilla/index.d.ts",
"import": "./dist/vanilla/index.js"
},
"./banner.css": "./dist/vue-privacy-banner.css",
"./modal.css": "./dist/vue-privacy-modal.css"
},
"main": "./dist/vue-privacy.umd.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/vue-privacy.umd.cjs",
"jsdelivr": "./dist/vue-privacy.umd.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/structured-world/vue-privacy"
},
"homepage": "https://privacy.sw.foundation",
"bugs": {
"url": "https://github.com/structured-world/vue-privacy/issues"
},
"keywords": [
"google-analytics",
"ga4",
"gtag",
"google-tag-manager",
"analytics",
"vue",
"vue3",
"vitepress",
"nuxt",
"quasar",
"cookie-consent",
"gdpr",
"ccpa",
"google-consent-mode",
"consent-mode-v2",
"cookie-banner",
"eu-cookie-law",
"privacy",
"spa-tracking",
"page-view",
"cdn",
"umd"
],
"engines": {
"node": ">=20.10"
},
"scripts": {
"build": "vite build && vite build --config vite.config.umd.ts && vite build --config vite.config.vanilla.ts && vue-tsc --project tsconfig.build.json --emitDeclarationOnly",
"dev": "vite build --watch",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"**/*.{js,ts,vue,json,md}\"",
"format:check": "prettier --check \"**/*.{js,ts,vue,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"vue": "^3.3.0",
"vue-router": "^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"vue-router": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jsdom": "^28.0.0",
"@types/node": "^22.19.8",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^10.0.0",
"eslint-plugin-vue": "^10.7.0",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.54.0",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.4",
"vitepress": "^1.6.4",
"vitest": "^4.0.18",
"vue": "^3.5.27",
"vue-eslint-parser": "^10.2.0",
"vue-router": "^5.0.2",
"vue-tsc": "^3.2.4"
},
"resolutions": {
"esbuild": ">=0.25.0",
"npm": ">=11.9.0"
}
}