-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
{
"name": "@cib/bootstrap-components",
"description": "Common vue components for building different web applications",
"version": "1.0.3-dev.13",
"type": "module",
"license": "Apache-2.0",
"main": "dist/bootstrap-components.umd.js",
"module": "dist/bootstrap-components.es.js",
"style": "dist/bootstrap-components.css",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/bootstrap-components.es.js",
"require": "./dist/bootstrap-components.umd.js"
},
"./dist/style.css": "./dist/bootstrap-components.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --coverage --reporter=default --reporter=junit --outputFile=target/vitest-reports/TEST-front-end.xml",
"lint": "eslint .",
"format": "eslint . --fix"
},
"dependencies": {},
"peerDependencies": {
"bootstrap": "^5.3.8",
"vue": "^3.5.33",
"vue-i18n": "^11.4.0",
"vue-router": "^5.0.6"
},
"devDependencies": {
"vue": "3.5.33",
"vue-i18n": "11.4.0",
"vue-router": "5.0.6",
"@eslint/js": "9.39.4",
"@vitejs/plugin-vue": "6.0.6",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/eslint-plugin": "1.6.16",
"@vue/test-utils": "2.4.9",
"eslint": "9.39.4",
"eslint-plugin-vue": "9.32.0",
"eslint-plugin-vuejs-accessibility": "2.5.0",
"jsdom": "29.1.0",
"vite": "6.4.2",
"vite-plugin-vue-devtools": "7.7.9",
"vitest": "3.2.4"
}
}