-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.04 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.04 KB
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
{
"name": "@owowagency/bootstrap-vue",
"version": "2.0.1",
"license": "MIT",
"homepage": "https://owowagency.github.io/bootstrap-vue",
"type": "module",
"main": "./lib/bootstrap-vue.cjs",
"module": "./lib/bootstrap-vue.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/bootstrap-vue.js",
"require": "./lib/bootstrap-vue.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "vite build",
"test": "vitest run",
"lint": "eslint src --ext .ts,.vue",
"generate-docs": "vue-docgen -c docgen.config.cjs",
"postversion": "cp package.json ..",
"predeploy": "yarn storybook:build",
"storybook": "storybook dev -p 6006",
"storybook:build": "NODE_OPTIONS=--openssl-legacy-provider storybook build",
"poststorybook:build": "cp -r ./storybook-static/dist/** ./storybook-static && rm -rf ./storybook-static/dist",
"storybook:deploy": "gh-pages -d storybook-static"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@storybook/addon-docs": "7.6.3",
"@storybook/addon-essentials": "7.6.3",
"@storybook/addon-interactions": "7.6.3",
"@storybook/addon-links": "7.6.3",
"@storybook/blocks": "7.6.3",
"@storybook/preset-scss": "^1.0.3",
"@storybook/vue3": "7.6.3",
"@storybook/vue3-vite": "7.6.3",
"@types/bootstrap": "^5.1.8",
"@types/jsdom": "^21.1.6",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.3.1",
"@vitejs/plugin-vue": "^4.5.1",
"@vue/eslint-config-typescript": "^9.0.1",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.2.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^8.0.3",
"gh-pages": "^3.2.3",
"jsdom": "^23.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.43.4",
"sass-loader": "10.1.1",
"storybook": "7.6.3",
"typescript": "^4.4.4",
"vite": "^5.0.4",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-static-copy": "^1.0.0",
"vitest": "^0.34.6",
"vue": "^3.2.26",
"vue-docgen-cli": "^4.67.0",
"vue-eslint-parser": "^8.0.1",
"vue-loader": "^16.8.3"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.3",
"uuid": "^8.3.2"
},
"peerDependencies": {
"vue": "^3.2.26"
},
"storybook": {
"url": "https://owowagency.github.io/bootstrap-vue"
},
"repository": "github:owowagency/bootstrap-vue.git",
"author": "Thomas van der Veen <thomas@owow.io>"
}