-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.32 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
{
"name": "nuxt-utm",
"version": "0.3.0",
"description": "A Nuxt 3/4 module for tracking UTM parameters.",
"keywords": [
"nuxt",
"nuxt3",
"nuxt4",
"utm",
"utm tracking",
"utm parameters",
"analytics",
"marketing",
"ad tracking",
"campaign tracking",
"traffic analysis",
"nuxt module",
"nuxt utm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stackbuilders/nuxt-utm.git"
},
"license": "MIT",
"type": "module",
"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": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release:prepare": "pnpm run prepack && changelogen --release --no-tag --no-push",
"lint": "eslint .",
"lint:prettier": "eslint --config .eslintprettier.config.js .",
"format": "prettier --write .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"test:package": "pnpm run prepack && node scripts/test-package.mjs",
"test:compatibility": "pnpm run prepack && node scripts/test-package.mjs --app"
},
"dependencies": {
"@nuxt/kit": "^3.17.2 || ^4.0.0"
},
"devDependencies": {
"@nuxt/cli": "^3.37.0",
"@nuxt/devtools": "^3.1.1",
"@nuxt/eslint": "^1.11.0",
"@nuxt/eslint-config": "^1.11.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.1",
"@nuxt/test-utils": "^3.20.1 || ^4.0.0",
"@types/node": "^26.2.0",
"changelogen": "^0.6.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"hookable": "^6.1.1",
"nuxt": "^4.2.1",
"playwright": "1.63.0",
"playwright-core": "1.62.1",
"prettier": "^3.5.3",
"typescript": "~5.9.3",
"vitest": "^4.0.14",
"vue": "^3.5.41",
"vue-router": "^5.2.0",
"vue-tsc": "^3.3.8"
},
"packageManager": "pnpm@11.20.0"
}