-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2 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
{
"name": "vue-gtag",
"description": "Global Site Tag (gtag.js) plugin for Vue",
"type": "module",
"version": "3.7.1",
"author": {
"name": "Matteo Gabriele",
"email": "m.gabriele.dev@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MatteoGabriele/vue-gtag.git"
},
"scripts": {
"dev": "tsdown --watch",
"check": "biome check",
"fix": "biome check --write",
"lint": "biome lint",
"typecheck": "tsc --noEmit",
"build": "tsdown",
"test": "vitest",
"test:cov": "vitest run --coverage",
"test:once": "vitest run",
"validate": "pnpm typecheck && pnpm check && pnpm lint && pnpm test:once && pnpm build",
"prepublishOnly": "pnpm validate"
},
"keywords": [
"google",
"google analytics",
"tracking",
"google tracking",
"vue-analytics",
"vue-gtag",
"gtag",
"gtag.js",
"global site tag",
"vue",
"vuejs"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/vue-gtag.d.ts",
"import": "./dist/vue-gtag.js",
"node": "./dist/vue-gtag.js"
}
},
"main": "./dist/vue-gtag.js",
"module": "./dist/vue-gtag.js",
"types": "./dist/vue-gtag.d.ts",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/MatteoGabriele/vue-gtag/issues"
},
"homepage": "https://github.com/MatteoGabriele/vue-gtag#readme",
"peerDependencies": {
"vue": "^3.5.13",
"vue-router": "^4.5.0 || ^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.13.5",
"flush-promises": "^1.0.2",
"jsdom": "^26.0.0",
"mockdate": "^3.0.5",
"publint": "^0.3.12",
"semantic-release": "^24.2.3",
"tsdown": "0.11.9",
"typescript": "^5.8.3",
"vitest": "^3.0.5",
"vue": "^3.5.13",
"vue-router": "^4.5.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
}
}