|
1 | 1 | {
|
2 | 2 | "name": "@gtm-support/vue2-gtm",
|
3 |
| - "version": "1.3.0", |
| 3 | + "version": "2.0.0", |
4 | 4 | "description": "Simple implementation of Google Tag Manager for Vue",
|
5 |
| - "main": "dist/index.js", |
| 5 | + "scripts": { |
| 6 | + "clean": "rimraf coverage dist pnpm-lock.yaml node_modules", |
| 7 | + "build": "tsc --noEmit && vite build", |
| 8 | + "format": "prettier --write .", |
| 9 | + "lint": "eslint .", |
| 10 | + "test": "vitest", |
| 11 | + "prepublishOnly": "pnpm run clean && pnpm install && pnpm run build" |
| 12 | + }, |
| 13 | + "type": "module", |
| 14 | + "files": [ |
| 15 | + "dist" |
| 16 | + ], |
| 17 | + "main": "dist/index.cjs", |
| 18 | + "module": "dist/index.js", |
| 19 | + "types": "dist/index.d.ts", |
| 20 | + "exports": { |
| 21 | + ".": { |
| 22 | + "import": "./dist/index.js", |
| 23 | + "require": "./dist/index.cjs" |
| 24 | + } |
| 25 | + }, |
6 | 26 | "author": {
|
7 | 27 | "name": "Christopher Quadflieg",
|
8 | 28 |
|
|
16 | 36 | ],
|
17 | 37 | "license": "MIT",
|
18 | 38 | "homepage": "https://github.com/gtm-support/vue-gtm/tree/vue2-gtm",
|
19 |
| - "scripts": { |
20 |
| - "clean": "rm -Rf dist pnpm-lock.yaml node_modules", |
21 |
| - "build": "tsc", |
22 |
| - "format": "prettier --write .", |
23 |
| - "lint": "eslint .", |
24 |
| - "test": "vitest", |
25 |
| - "prepublishOnly": "pnpm run clean && pnpm install && pnpm run build" |
26 |
| - }, |
27 | 39 | "repository": {
|
28 | 40 | "type": "git",
|
29 | 41 | "url": "https://github.com/gtm-support/vue-gtm.git"
|
|
50 | 62 | "vue",
|
51 | 63 | "google"
|
52 | 64 | ],
|
53 |
| - "files": [ |
54 |
| - "dist", |
55 |
| - "src", |
56 |
| - "tsconfig.json" |
57 |
| - ], |
58 | 65 | "dependencies": {
|
59 |
| - "@gtm-support/core": "1.3.0" |
| 66 | + "@gtm-support/core": "^2.0.0" |
60 | 67 | },
|
61 | 68 | "devDependencies": {
|
62 |
| - "@typescript-eslint/eslint-plugin": "~5.23.0", |
63 |
| - "@typescript-eslint/parser": "~5.23.0", |
64 |
| - "eslint": "~8.15.0", |
| 69 | + "@typescript-eslint/eslint-plugin": "~5.39.0", |
| 70 | + "@typescript-eslint/parser": "~5.39.0", |
| 71 | + "eslint": "~8.24.0", |
65 | 72 | "eslint-config-prettier": "~8.5.0",
|
66 |
| - "eslint-define-config": "~1.4.1", |
| 73 | + "eslint-define-config": "~1.7.0", |
67 | 74 | "eslint-gitignore": "~0.1.0",
|
68 |
| - "eslint-plugin-jsdoc": "~39.2.9", |
69 |
| - "eslint-plugin-prettier": "~4.0.0", |
| 75 | + "eslint-plugin-jsdoc": "~39.3.6", |
| 76 | + "eslint-plugin-prettier": "~4.2.1", |
70 | 77 | "eslint-plugin-spellcheck": "~0.0.19",
|
71 |
| - "jsdom": "~19.0.0", |
72 |
| - "prettier": "2.6.2", |
73 |
| - "prettier-plugin-organize-imports": "~2.3.4", |
74 |
| - "typescript": "~4.6.4", |
75 |
| - "vitest": "~0.12.6", |
76 |
| - "vue": "^2.6.14", |
77 |
| - "vue-router": "^3.5.3" |
| 78 | + "jsdom": "~20.0.1", |
| 79 | + "prettier": "2.7.1", |
| 80 | + "prettier-plugin-organize-imports": "~3.1.1", |
| 81 | + "rimraf": "~3.0.2", |
| 82 | + "typescript": "~4.8.4", |
| 83 | + "vite": "~3.1.6", |
| 84 | + "vite-plugin-dts": "~1.6.5", |
| 85 | + "vitest": "~0.24.0", |
| 86 | + "vue": "^2.7.10", |
| 87 | + "vue-router": "^3.6.5" |
78 | 88 | },
|
79 | 89 | "peerDependencies": {
|
80 |
| - "vue": "^2.6.14" |
| 90 | + "vue": "^2.7.0" |
81 | 91 | },
|
82 |
| - "packageManager": "pnpm@7.1.0" |
| 92 | + "packageManager": "pnpm@7.13.2" |
83 | 93 | }
|
0 commit comments