You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

nuxt-webhook-validators

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuxt-webhook-validators - npm Package Compare versions

Comparing version
0.1.11
to
0.2.0
+3
-3
dist/module.json

@@ -7,7 +7,7 @@ {

},
"version": "0.1.11",
"version": "0.2.0",
"builder": {
"@nuxt/module-builder": "0.8.4",
"unbuild": "2.0.0"
"@nuxt/module-builder": "1.0.0",
"unbuild": "3.5.0"
}
}

@@ -1,7 +0,3 @@

import type { NuxtModule } from '@nuxt/schema'
export { default } from './module.mjs'
import type { default as Module } from './module.js'
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
export { default } from './module.js'
export { type ModuleOptions } from './module.mjs'
{
"name": "nuxt-webhook-validators",
"version": "0.1.11",
"version": "0.2.0",
"description": "A simple nuxt module that works on the edge to easily validate incoming webhooks from different services.",

@@ -18,3 +18,3 @@ "keywords": [

"email": "yizackr@gmail.com",
"url": "https://yizack.com/"
"url": "https://yizack.com"
},

@@ -25,9 +25,7 @@ "license": "MIT",

".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"main": "./dist/module.mjs",
"files": [

@@ -49,3 +47,3 @@ "dist"

"dependencies": {
"@nuxt/kit": "^3.16.1",
"@nuxt/kit": "^3.16.2",
"defu": "^6.1.4",

@@ -55,23 +53,16 @@ "scule": "^1.3.0"

"devDependencies": {
"@nuxt/devtools": "^2.3.1",
"@nuxt/eslint-config": "^1.2.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.16.1",
"@nuxt/devtools": "^2.3.2",
"@nuxt/eslint-config": "^1.3.0",
"@nuxt/module-builder": "^1.0.0",
"@nuxt/schema": "^3.16.2",
"@nuxt/test-utils": "^3.17.2",
"@types/node": "^22.13.10",
"@types/node": "^22.14.0",
"changelogen": "^0.6.1",
"eslint": "^9.22.0",
"nuxt": "^3.16.1",
"typescript": "^5.8.2",
"vitest": "^3.0.9",
"eslint": "^9.24.0",
"nuxt": "^3.16.2",
"typescript": "^5.8.3",
"vitest": "^3.1.1",
"vue-tsc": "^2.2.8"
},
"packageManager": "pnpm@10.6.5",
"changelog": {
"repo": {
"repo": "Yizack/nuxt-webhook-validators",
"provider": "github",
"domain": "github.com"
}
}
"packageManager": "pnpm@10.7.1"
}
module.exports = function(...args) {
return import('./module.mjs').then(m => m.default.call(this, ...args))
}
const _meta = module.exports.meta = require('./module.json')
module.exports.getMeta = () => Promise.resolve(_meta)
import * as _nuxt_schema from '@nuxt/schema';
interface ModuleOptions {
}
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
export { _default as default };
export type { ModuleOptions };
import type { NuxtModule } from '@nuxt/schema'
import type { default as Module } from './module'
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
export { default } from './module'