Skip to content

Commit

Permalink
feat: update package description and add keywords in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbud committed Feb 28, 2025
1 parent 72dad68 commit 1a2763d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nuxt-query",
"version": "0.0.0",
"description": "Nuxt integration for Tanstack Vue Query",
"description": "Nuxt integration for Tanstack Query",
"repository": {
"type": "git",
"url": "git+https://github.com/peterbud/nuxt-query.git"
Expand All @@ -15,6 +15,15 @@
"import": "./dist/module.mjs"
}
},
"keywords": [
"vue",
"nuxt",
"query",
"nuxt-module",
"tanstack",
"tanstack-query",
"vue-query"
],
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
Expand Down
2 changes: 2 additions & 0 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineNuxtModule, addImports, addPlugin, createResolver, useLogger } fr
import { defu } from 'defu'
import type { QueryClient, QueryClientConfig } from '@tanstack/vue-query'
import type { HookResult } from '@nuxt/schema'
import { version } from '../package.json'
import { setupDevToolsUI } from './devtools'

const _composables = [
Expand Down Expand Up @@ -49,6 +50,7 @@ export default defineNuxtModule<ModuleOptions>({
meta: {
name: 'nuxt-query',
configKey: 'nuxtQuery',
version,
},

// Default configuration options of the Nuxt module
Expand Down

0 comments on commit 1a2763d

Please sign in to comment.