-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update to latest nuxt/module-builder + drop cjs support
- Loading branch information
1 parent
94b7509
commit 01788ce
Showing
4 changed files
with
1,792 additions
and
3,626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "nuxt-gtag", | ||
"type": "module", | ||
"version": "3.0.2", | ||
"packageManager": "pnpm@9.14.1", | ||
"packageManager": "pnpm@9.15.4", | ||
"description": "Natively integrates Google Tag into Nuxt", | ||
"author": "Johann Schopplich <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -21,13 +21,11 @@ | |
], | ||
"exports": { | ||
".": { | ||
"types": "./dist/types.d.ts", | ||
"import": "./dist/module.mjs", | ||
"require": "./dist/module.cjs" | ||
"types": "./dist/types.d.mts" | ||
} | ||
}, | ||
"main": "./dist/module.cjs", | ||
"types": "./dist/types.d.ts", | ||
"main": "./dist/module.mjs", | ||
"types": "./dist/types.d.mts", | ||
"files": [ | ||
"dist" | ||
], | ||
|
@@ -42,20 +40,20 @@ | |
"release": "bumpp" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.14.1592", | ||
"@nuxt/kit": "^3.15.1", | ||
"defu": "^6.1.4", | ||
"pathe": "^1.1.2", | ||
"pathe": "^2.0.1", | ||
"ufo": "^1.5.4" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/eslint-config": "^0.7.1", | ||
"@nuxt/module-builder": "^0.8.4", | ||
"@nuxt/schema": "^3.14.1592", | ||
"@types/node": "^22.9.1", | ||
"bumpp": "^9.8.1", | ||
"eslint": "^9.15.0", | ||
"eslint-plugin-perfectionist": "^4.0.3", | ||
"nuxt": "^3.14.1592", | ||
"typescript": "^5.6.3" | ||
"@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" | ||
} | ||
} |
Oops, something went wrong.