better-convex-nuxt 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.0.0"
6
6
  },
7
- "version": "0.1.7",
7
+ "version": "0.1.8",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "3.6.1"
@@ -1,4 +1,4 @@
1
- import { useRuntimeConfig } from "#imports";
1
+ import { useRuntimeConfig } from "nitropack/runtime";
2
2
  import { parseConvexResponse, getFunctionName } from "../../utils/convex-cache.js";
3
3
  import { createLogger, getVerboseFlag } from "../../utils/logger.js";
4
4
  export async function fetchQuery(convexUrl, query, args, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-convex-nuxt",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Full-featured Convex integration for Nuxt with SSR, real-time subscriptions, authentication, and permissions",
5
5
  "keywords": [
6
6
  "authentication",
@@ -51,6 +51,22 @@
51
51
  "import": "./dist/runtime/server/utils/convex.js"
52
52
  }
53
53
  },
54
+ "scripts": {
55
+ "prepack": "nuxt-module-build build",
56
+ "dev": "npm run dev:prepare && nuxi dev playground",
57
+ "dev:build": "nuxi build playground",
58
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
59
+ "release": "npm run lint && npm run test && npm run prepack && git fetch --tags --force origin && changelogen --release && npm publish && git push --follow-tags",
60
+ "lint": "eslint .",
61
+ "format": "oxfmt",
62
+ "format:check": "oxfmt --check",
63
+ "test": "vitest run --project=convex",
64
+ "test:e2e": "vitest run --project=e2e",
65
+ "test:full": "vitest run",
66
+ "test:watch": "vitest watch --project=convex",
67
+ "test:types": "vue-tsc --noEmit",
68
+ "prepare": "husky"
69
+ },
54
70
  "dependencies": {
55
71
  "@convex-dev/better-auth": "^0.10.9",
56
72
  "@nuxt/kit": "^4.2.2",
@@ -84,18 +100,5 @@
84
100
  "lint-staged": {
85
101
  "!(**/_generated/**/*)": "oxfmt --no-error-on-unmatched-pattern"
86
102
  },
87
- "scripts": {
88
- "dev": "npm run dev:prepare && nuxi dev playground",
89
- "dev:build": "nuxi build playground",
90
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
91
- "release": "npm run lint && npm run test && npm run prepack && git fetch --tags --force origin && changelogen --release && npm publish && git push --follow-tags",
92
- "lint": "eslint .",
93
- "format": "oxfmt",
94
- "format:check": "oxfmt --check",
95
- "test": "vitest run --project=convex",
96
- "test:e2e": "vitest run --project=e2e",
97
- "test:full": "vitest run",
98
- "test:watch": "vitest watch --project=convex",
99
- "test:types": "vue-tsc --noEmit"
100
- }
101
- }
103
+ "packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
104
+ }