@bootstrap-vue-next/nuxt 0.0.5 → 0.0.6

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
@@ -5,5 +5,5 @@
5
5
  "nuxt": "^3.0.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "0.0.5"
8
+ "version": "0.0.6"
9
9
  }
package/dist/types.d.ts CHANGED
@@ -3,4 +3,5 @@ import { } from './module'
3
3
 
4
4
 
5
5
 
6
+
6
7
  export { default } from './module'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bootstrap-vue-next/nuxt",
3
- "description": "",
4
- "version": "0.0.5",
3
+ "description": "Nuxt Module for BootstrapVueNext",
4
+ "version": "0.0.6",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Issayah",
@@ -21,30 +21,51 @@
21
21
  "dist"
22
22
  ],
23
23
  "peerDependencies": {
24
- "bootstrap-vue-next": "^0.8.0"
24
+ "bootstrap-vue-next": "^0.8.10"
25
25
  },
26
26
  "dependencies": {
27
- "@nuxt/kit": "^3.3.2"
27
+ "@nuxt/kit": "^3.4.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@nuxt/eslint-config": "^0.1.1",
31
- "@nuxt/module-builder": "^0.2.1",
32
- "@nuxt/schema": "^3.3.2",
31
+ "@nuxt/module-builder": "^0.3.1",
32
+ "@nuxt/schema": "^3.4.3",
33
33
  "@rushstack/eslint-patch": "^1.2.0",
34
34
  "@vue/eslint-config-prettier": "^7.1.0",
35
- "eslint": "^8.36.0",
36
- "eslint-define-config": "^1.17.0",
37
- "nuxt": "^3.3.2",
38
- "prettier": "^2.8.4",
39
- "unimport": "^3.0.4",
35
+ "eslint": "^8.39.0",
36
+ "eslint-define-config": "^1.20.0",
37
+ "nuxt": "^3.4.3",
38
+ "prettier": "^2.8.8",
39
+ "unimport": "^3.0.6",
40
40
  "vue": "^3.2.47",
41
- "bootstrap-vue-next": "^0.8.0"
41
+ "bootstrap-vue-next": "^0.8.10"
42
+ },
43
+ "repository": {
44
+ "type": "github",
45
+ "url": "https://github.com/bootstrap-vue/bootstrap-vue-next/tree/main/packages/nuxt"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/bootstrap-vue/bootstrap-vue-next/issues"
49
+ },
50
+ "homepage": "https://github.com/bootstrap-vue/bootstrap-vue-next",
51
+ "keywords": [
52
+ "nuxt",
53
+ "vue3",
54
+ "vue",
55
+ "bootstrap",
56
+ "typescript",
57
+ "bootstrap-vue-next"
58
+ ],
59
+ "lint-staged": {
60
+ "*.{js,ts,vue}": "eslint --cache --fix",
61
+ "*": "prettier --write --ignore-unknown"
42
62
  },
43
63
  "scripts": {
44
- "dev": "nuxi dev playground",
64
+ "dev": "nuxi dev playground --port 3030",
65
+ "build": "pnpm run dev:build && pnpm run prepack",
45
66
  "dev:build": "nuxi build playground",
46
67
  "dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
47
- "lint": "eslint .",
48
- "build": "pnpm run dev:build && pnpm run prepack"
68
+ "lint": "eslint --ext .js,.ts,.vue --ignore-path ../../.gitignore --fix",
69
+ "test:lint": "eslint --ext .js,.ts,.vue --ignore-path ../../.gitignore"
49
70
  }
50
71
  }