You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

170 lines
4.2 KiB

  1. {
  2. "name": "bootstrap-vue-next",
  3. "displayName": "BootstrapVueNext",
  4. "description": "BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.",
  5. "version": "0.15.5",
  6. "license": "MIT",
  7. "main": "./dist/bootstrap-vue-next.umd.js",
  8. "module": "./dist/bootstrap-vue-next.mjs",
  9. "exports": {
  10. ".": {
  11. "types": "./dist/src/BootstrapVue.d.ts",
  12. "import": "./dist/bootstrap-vue-next.mjs",
  13. "require": "./dist/bootstrap-vue-next.umd.js"
  14. },
  15. "./dist/bootstrap-vue-next.css": "./dist/bootstrap-vue-next.css",
  16. "./src/*": "./src/*",
  17. "./src/styles/styles.scss": "./src/styles/styles.scss"
  18. },
  19. "files": [
  20. "dist",
  21. "src",
  22. "!src/**/*.spec.ts",
  23. "!src/**/*.spec.js",
  24. "!src/App.vue",
  25. "!src/main.ts"
  26. ],
  27. "types": "./dist/src/BootstrapVue.d.ts",
  28. "private": false,
  29. "peerDependencies": {
  30. "vue": "^3.3.8"
  31. },
  32. "dependencies": {
  33. "@floating-ui/vue": "^1.0.2",
  34. "@vueuse/core": "^10.6.0"
  35. },
  36. "devDependencies": {
  37. "@floating-ui/core": "^1.5.0",
  38. "@rushstack/eslint-patch": "^1.5.1",
  39. "@tsconfig/node20": "^20.1.2",
  40. "@types/node": "^20.9.0",
  41. "@vitejs/plugin-vue": "^4.4.1",
  42. "@vitest/coverage-v8": "^0.34.6",
  43. "@vue/eslint-config-prettier": "^8.0.0",
  44. "@vue/eslint-config-typescript": "^12.0.0",
  45. "@vue/runtime-core": "^3.3.8",
  46. "@vue/test-utils": "^2.4.1",
  47. "@vue/tsconfig": "^0.4.0",
  48. "@vueuse/shared": "^10.5.0",
  49. "bootstrap": "^5.3.2",
  50. "eslint": "^8.53.0",
  51. "eslint-define-config": "^1.24.1",
  52. "eslint-plugin-vue": "^9.18.1",
  53. "happy-dom": "^12.10.3",
  54. "prettier": "^3.0.3",
  55. "sass": "^1.69.5",
  56. "typescript": "^5.2.2",
  57. "vite": "^4.5.0",
  58. "vite-plugin-dts": "^3.6.3",
  59. "vitest": "^0.34.6",
  60. "vue": "^3.3.8",
  61. "vue-router": "^4.2.5",
  62. "vue-tsc": "^1.8.22"
  63. },
  64. "repository": {
  65. "type": "git",
  66. "url": "git+https://github.com/bootstrap-vue-next/bootstrap-vue-next.git",
  67. "directory": "packages/bootstrap-vue-next"
  68. },
  69. "bugs": {
  70. "url": "https://github.com/bootstrap-vue-next/bootstrap-vue-next/issues"
  71. },
  72. "funding": {
  73. "type": "opencollective",
  74. "url": "https://opencollective.com/bootstrap-vue-next"
  75. },
  76. "homepage": "https://github.com/bootstrap-vue-next/bootstrap-vue-next",
  77. "keywords": [
  78. "vue3",
  79. "vue",
  80. "bootstrap",
  81. "components",
  82. "typescript",
  83. "javascript",
  84. "js",
  85. "library",
  86. "component library",
  87. "bootstrap-vue-next",
  88. "bootstrap-vue-3",
  89. "Bootstrap",
  90. "Nuxt",
  91. "Nuxtjs",
  92. "Nuxt 3",
  93. "Bootstrap 5",
  94. "Bootstrap v5",
  95. "Bootstrap for Vue",
  96. "Bootstrap for Vue 3",
  97. "Vue",
  98. "Vue.js",
  99. "Vue 3",
  100. "Vue v3",
  101. "SSR",
  102. "Web",
  103. "Directives",
  104. "ARIA",
  105. "Accessibility",
  106. "a11y",
  107. "CSS",
  108. "SCSS",
  109. "Alert",
  110. "Avatar",
  111. "Badge",
  112. "Breadcrumb",
  113. "Button",
  114. "Calendar",
  115. "Card",
  116. "Carousel",
  117. "Checkbox",
  118. "Collapse",
  119. "Collapse",
  120. "Date picker",
  121. "Datepicker",
  122. "Dropdown",
  123. "Dropzone",
  124. "Form",
  125. "Input",
  126. "List",
  127. "Modal",
  128. "Nav",
  129. "Navbar",
  130. "Option",
  131. "Overlay",
  132. "Pagination",
  133. "Popover",
  134. "Progress",
  135. "Radio",
  136. "Select",
  137. "Sidebar",
  138. "Skeleton",
  139. "Slider",
  140. "Spinner",
  141. "Tab",
  142. "Table",
  143. "Tag",
  144. "Tags",
  145. "Time picker",
  146. "Timepicker",
  147. "Toast",
  148. "Tooltip"
  149. ],
  150. "lint-staged": {
  151. "*.{js,ts,vue}": "eslint --cache --fix",
  152. "*": "prettier --write --ignore-unknown"
  153. },
  154. "scripts": {
  155. "dev": "vite --port 5174",
  156. "build-only": "vite build",
  157. "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
  158. "type-check-emit": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json --composite false",
  159. "preview": "vite preview",
  160. "build": "pnpm run type-check && pnpm run build-only",
  161. "lint": "eslint --ext .js,.ts,.vue --ignore-path ../../.gitignore --fix src",
  162. "test:lint": "eslint --ext .js,.ts,.vue --ignore-path ../../.gitignore src",
  163. "test:unit": "vitest",
  164. "test:coverage": "vitest --coverage",
  165. "test:lint:ci": "pnpm run test:lint",
  166. "test:unit:ci": "vitest run",
  167. "test": "pnpm run test:lint && pnpm run test:unit",
  168. "test:ci": "pnpm run test:lint:ci && pnpm run test:unit:ci"
  169. }
  170. }