-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.86 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
{
"name": "@vue-storefront/nuxt-gtag",
"version": "1.0.7",
"license": "MIT",
"contributors": [
{
"email": "[email protected]",
"name": "Heitor Ramon Ribeiro",
"url": "https://heitor.co"
}
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint src --ext .js,.ts,.vue --ignore-path .eslintignore --fix",
"lint:fix": "eslint src --ext .js,.ts,.vue --ignore-path .eslintignore --fix",
"precommit": "lint-staged",
"prepack": "nuxt-module-build",
"prepare": "husky install",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push"
},
"dependencies": {
"@nuxt/kit": "^3.0.0",
"transform-object-keys": "^1.0.7",
"ufo": "^1.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/prettier": "^2.7.1",
"@vue-storefront/eslint-config": "^1.1.2",
"c8": "^7.12.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "latest",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"nuxt": "^3.0.0",
"prettier": "^2.7.1"
},
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"directories": {
"example": "playground"
},
"keywords": [
"gtag",
"google-tag-manager",
"recommend",
"ga",
"google-analytics",
"analytics",
"nuxt",
"module"
],
"bugs": {
"url": "https://github.com/vuestorefront-community/nuxt-gtag/issues"
},
"homepage": "https://github.com/vuestorefront-community/nuxt-gtag#readme"
}