-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.1 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.1 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
{
"name": "nuxt-ganalytics",
"version": "2.4.1",
"description": "Integration for Google Analytics 4 and Google Tag Manager in Nuxt",
"repository": "https://github.com/Zadigo/nuxt-ganalytics",
"author": {
"name": "John Pendenque",
"email": "pendenquejohn@gmail.com"
},
"readme": "README.md",
"license": "MIT",
"type": "module",
"keywords": [
"google analytics",
"ga4",
"google tag manager",
"gtm",
"analytics"
],
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint & npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"release:major": "npm run lint & npm run test && npm run prepack && changelogen --release --major && npm publish && git push --follow-tags",
"release:minor": "npm run lint & npm run test && npm run prepack && changelogen --release --minor && npm publish && git push --follow-tags",
"release:patch": "npm run lint & npm run test && npm run prepack && changelogen --release --patch && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:oxc": "oxlint lint --type-aware",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"test:release": "npm run lint & npm run test && npm run prepack && changelogen --release --patch --no-commit --no-tag"
},
"peerDependencies": {
"@vueuse/core": "^13.0.0",
"nuxt": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"@gtm-support/vue-gtm": "^3.2.0",
"@vueuse/core": "^14.2.1",
"defu": "^6.1.4",
"ufo": "^1.6.3"
},
"devDependencies": {
"@nuxt/devtools": "^3.2.3",
"@nuxt/devtools-kit": "^3.2.3",
"@nuxt/eslint": "1.15.2",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/fonts": "0.14.0",
"@nuxt/kit": "^4.3.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/scripts": "0.13.2",
"@nuxt/test-utils": "^4.0.0",
"@nuxt/ui": "^4.5.1",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "latest",
"@unhead/vue": "^2.1.12",
"@vitest/coverage-v8": "4.0.18",
"@vue/test-utils": "^2.4.6",
"@vueuse/nuxt": "14.2.1",
"changelogen": "^0.6.2",
"eslint": "^10.0.3",
"happy-dom": "^20.8.3",
"nuxt": "^4.3.1",
"oxfmt": "^0.39.0",
"oxlint": "^1.54.0",
"oxlint-tsgolint": "^0.16.0",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vitest": "^4.0.18",
"vue": "^3.5.30",
"vue-tsc": "^3.2.5"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
}