forked from Efficy/bootstrap-vue-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "bootstrap-vue-3",
"displayName": "BootstrapVue3",
"description": "Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript",
"version": "0.1.20",
"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",
"workspaces": [
"docs/"
],
"private": false,
"scripts": {
"audit": "improved-yarn-audit --ignore-dev-deps --min-severity moderate",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"docs:dev": "npm exec --workspace=docs vuepress dev docs",
"docs:build": "npm exec --workspace=docs vuepress build .",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"docs:deploy": "./scripts/deploy.sh",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "npm run lint",
"test:unit": "vitest",
"publish": "npm publish --tag develop",
"prepare": "husky install && npm run build"
},
"dependencies": {
"vue": "3.x.x"
},
"peerDependencies": {
"bootstrap": "5.x.x"
},
"devDependencies": {
"@types/bootstrap": "5.x.x",
"@typescript-eslint/eslint-plugin": "5.x.x",
"@typescript-eslint/parser": "5.x.x",
"@vitejs/plugin-vue": "2.x.x",
"@vue/eslint-config-typescript": "10.x.x",
"@vue/test-utils": "^2.0.0-rc.18",
"eslint": "8.x.x",
"eslint-config-prettier": "8.x.x",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "8.x.x",
"husky": "^7.0.2",
"improved-yarn-audit": "3.x.x",
"jsdom": "^19.0.0",
"lint-staged": "12.x.x",
"prettier": "^2.3.2",
"release-please": "^13.18.7",
"rollup-plugin-visualizer": "5.x.x",
"sass": "1.x.x",
"typescript": "4.x.x",
"vite": "2.x.x",
"vite-plugin-dts": "1.x.x",
"vitest": "^0.10.4",
"vue-router": "4.x.x",
"vue-tsc": "^0.37.2"
},
"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"
}
}