UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

85 lines 2.32 kB
{ "name": "bootstrap-vue-3", "displayName": "BootstrapVue3", "description": "Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript", "version": "0.3.9", "license": "MIT", "main": "./dist/bootstrap-vue-3.umd.js", "module": "./dist/bootstrap-vue-3.es.js", "exports": { ".": { "import": "./dist/bootstrap-vue-3.es.js", "require": "./dist/bootstrap-vue-3.umd.js" }, "./dist/bootstrap-vue-3.css": "./dist/bootstrap-vue-3.css", "./nuxt": "./nuxt.js", "./src/styles/styles.scss": "./src/styles/styles.scss" }, "files": [ "dist", "src", "nuxt.js" ], "types": "./dist/BootstrapVue.d.ts", "private": false, "peerDependencies": { "@popperjs/core": "^2.11.6", "bootstrap": "^5.2.0", "vue": "^3.2.37" }, "devDependencies": { "@popperjs/core": "^2.11.6", "@types/bootstrap": "^5.2.2", "@vitejs/plugin-vue": "^3.0.0", "@vitest/coverage-c8": "^0.23.2", "@vue/runtime-core": "^3.2.37", "@vue/shared": "^3.2.37", "@vue/test-utils": "^2.0.2", "bootstrap": "^5.2.0", "c8": "^7.12.0", "jsdom": "^20.0.0", "rollup": "^2.78.1", "rollup-plugin-visualizer": "^5.7.1", "sass": "^1.54.4", "tsconfig": "1.0.0", "typescript": "^4.7.4", "vite": "^3.0.0", "vite-plugin-dts": "^1.4.1", "vitest": "^0.23.2", "vue": "^3.2.37", "vue-router": "^4.1.3", "vue-tsc": "^0.38.4" }, "repository": { "type": "git", "url": "https://github.com/cdmoro/bootstrap-vue-3.git" }, "bugs": { "url": "https://github.com/cdmoro/bootstrap-vue-3/issues" }, "homepage": "https://github.com/cdmoro/bootstrap-vue-3", "keywords": [ "bootstrap", "components", "typescript", "vue", "component-library", "bootstrapvue", "vue3" ], "lint-staged": { "*.{js,vue}": "eslint --cache --fix", "*": "prettier --write --ignore-unknown" }, "scripts": { "dev": "vite --port 5174", "build": "vue-tsc --noEmit && vite build", "serve": "vite preview", "lint": "eslint --ext .js,.vue --ignore-path ../../.gitignore --fix src", "format": "prettier . --write", "test": "pnpm run test:lint && pnpm run test:unit", "test:lint": "pnpm run lint", "test:unit": "vitest", "test:coverage": "vitest --coverage" } }