abckit 0.0.31 → 0.0.32

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.
Files changed (1) hide show
  1. package/package.json +14 -13
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "abckit",
3
3
  "type": "module",
4
- "version": "0.0.31",
4
+ "version": "0.0.32",
5
5
  "description": "Nuxt 4 module — UI components, auth, storage, GraphQL",
6
6
  "author": "productdevbook",
7
7
  "license": "MIT",
@@ -71,6 +71,17 @@
71
71
  "files": [
72
72
  "dist"
73
73
  ],
74
+ "scripts": {
75
+ "build": "nuxt-module-build build",
76
+ "prepack": "nuxt-module-build build",
77
+ "dev": "nuxt dev playground",
78
+ "dev:build": "nuxi build playground",
79
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
80
+ "lint": "eslint .",
81
+ "lint:fix": "eslint . --fix",
82
+ "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
83
+ "release": "pnpm publish --no-git-checks --access public"
84
+ },
74
85
  "dependencies": {
75
86
  "@capacitor/android": "7.4.4",
76
87
  "@capacitor/app": "^8.0.0",
@@ -130,7 +141,7 @@
130
141
  "graphql-scalars": "^1.25.0",
131
142
  "graphql-yoga": "^5.18.0",
132
143
  "md-editor-v3": "^6.2.1",
133
- "nitro-graphql": "^1.7.0",
144
+ "nitro-graphql": "^1.7.1",
134
145
  "nitropack": "^2.12.9",
135
146
  "notivue": "^2.4.5",
136
147
  "pg": "^8.16.3",
@@ -174,15 +185,5 @@
174
185
  "patchedDependencies": {
175
186
  "entities@7.0.0": "patches/entities@7.0.0.patch",
176
187
  "entities@7.0.0@7.0.0": "patches/entities@7.0.0.patch"
177
- },
178
- "scripts": {
179
- "build": "nuxt-module-build build",
180
- "dev": "nuxt dev playground",
181
- "dev:build": "nuxi build playground",
182
- "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
183
- "lint": "eslint .",
184
- "lint:fix": "eslint . --fix",
185
- "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
186
- "release": "pnpm publish --no-git-checks --access public"
187
188
  }
188
- }
189
+ }