-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 KB
/
package.json
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
{
"name": "nuxt-gtag",
"type": "module",
"version": "3.0.2",
"packageManager": "[email protected]",
"description": "Natively integrates Google Tag into Nuxt",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/johannschopplich/nuxt-gtag#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/nuxt-gtag.git"
},
"bugs": "https://github.com/johannschopplich/nuxt-gtag/issues",
"keywords": [
"analytics",
"google",
"gtag",
"gtm",
"nuxt"
],
"exports": {
".": {
"types": "./dist/types.d.mts"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.mts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:types": "tsc --noEmit",
"release": "bumpp"
},
"dependencies": {
"@nuxt/kit": "^3.15.1",
"defu": "^6.1.4",
"pathe": "^2.0.1",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.7.5",
"@nuxt/module-builder": "^1.0.0-alpha.1",
"@nuxt/schema": "^3.15.1",
"@types/node": "^22.10.6",
"bumpp": "^9.10.0",
"eslint": "^9.18.0",
"eslint-plugin-perfectionist": "^4.6.0",
"nuxt": "^3.15.1",
"typescript": "^5.7.3"
}
}