-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.32 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
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
{
"name": "@zadigetvoltaire/nuxt-gtm",
"version": "0.0.13",
"description": "Nuxt module to add Google Tag Manager",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build && npm run client:build",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"dev": "concurrently \"npm:client:dev\" \"npm:play:dev\"",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare client",
"play:dev": "nuxi dev playground",
"play:prod": "npm run prepack && nuxi dev playground",
"release": "changelogen --release --push",
"lint": "cross-env NODE_ENV=production eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@gtm-support/vue-gtm": "^2.0.0",
"@nuxt/kit": "^3.5.1",
"defu": "^6.1.2",
"sirv": "^2.0.3"
},
"peerDependencies": {
"nuxt": "^3.0.0"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.15",
"@nuxt/devtools": "0.5.0",
"@nuxt/devtools-ui-kit": "0.5.0",
"@nuxt/eslint-config": "^0.1.1",
"@nuxt/module-builder": "^0.3.1",
"@nuxt/schema": "^3.5.1",
"@nuxt/test-utils": "^3.5.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"changelogen": "^0.5.1",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"nuxt": "^3.5.1",
"vitest": "^0.31.1"
},
"repository": {
"type": "git",
"url": "https://github.com/zadigetvoltaire/nuxt-gtm.git"
},
"keywords": [
"nuxt",
"nuxt3",
"module",
"nuxt-module",
"gtm",
"google tag manager",
"googletagmanager",
"open-source"
],
"author": "Zadig&Voltaire",
"bugs": {
"url": "https://github.com/zadigetvoltaire/nuxt-gtm/issues"
},
"homepage": "https://github.com/zadigetvoltaire/nuxt-gtm#readme",
"changelog": {
"repo": {
"provider": "github"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"typescript",
"webpack",
"vue",
"vite"
]
}
}
}