bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
91 lines • 2.45 kB
JSON
{
"name": "bootstrap-vue-3",
"displayName": "BootstrapVue3",
"description": "Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript",
"version": "0.5.1",
"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.ts",
"./src/styles/styles.scss": "./src/styles/styles.scss"
},
"files": [
"dist",
"src",
"!src/**/*.spec.ts",
"!src/**/*.spec.js",
"nuxt.ts"
],
"types": "./dist/BootstrapVue.d.ts",
"private": false,
"peerDependencies": {
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"vue": "^3.2.45"
},
"dependencies": {
"@nuxt/kit": "3.0.0",
"@vueuse/core": "^9.6.0"
},
"devDependencies": {
"@popperjs/core": "^2.11.6",
"@types/bootstrap": "^5.2.6",
"@vitejs/plugin-vue": "^3.2.0",
"@vitest/coverage-c8": "^0.25.3",
"@vue/runtime-core": "^3.2.45",
"@vue/shared": "^3.2.45",
"@vue/test-utils": "^2.2.5",
"bootstrap": "^5.2.3",
"c8": "^7.7.0",
"happy-dom": "^7.7.2",
"jsdom": "^20.0.3",
"rollup": "^3.5.1",
"rollup-plugin-visualizer": "^5.8.3",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.25.3",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vue-tsc": "^1.0.13",
"tsconfig": "1.0.0"
},
"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": [
"vue3",
"vue",
"bootstrap",
"components",
"typescript",
"component-library",
"bootstrapvue"
],
"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",
"format": "prettier . --write",
"test": "pnpm run test:lint && pnpm run test:unit",
"test:lint": "eslint --ext .js,.vue --ignore-path ../../.gitignore --fix src",
"test:unit": "vitest",
"test:coverage": "vitest --coverage"
}
}