-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.61 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
89
90
91
92
93
94
{
"name": "@oruga-ui/theme-bootstrap",
"version": "0.11.0",
"description": "Bootstrap theme for Oruga",
"license": "MIT",
"type": "module",
"main": "dist/theme.umd.cjs",
"module": "dist/theme.js",
"unpkg": "dist/theme.umd.cjs",
"types": "dist/types/theme.d.ts",
"sideEffects": [
"*.css",
"*.scss"
],
"exports": {
".": {
"import": "./dist/theme.js",
"types": "./dist/types/theme.d.ts"
},
"./style.css": "./dist/theme.css",
"./style.scss": "./dist/scss/theme.scss",
"./scss/*": "./dist/scss/*.scss",
"./dist/scss/*": "./dist/scss/*.scss"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oruga-ui/theme-bootstrap.git"
},
"bugs": {
"url": "https://github.com/oruga-ui/theme-bootstrap/issues"
},
"scripts": {
"dev": "vite --force",
"serve": "vite preview",
"build": "vite build",
"lint": "run-s lint:eslint lint:prettier lint:stylelint",
"lint:eslint": "eslint . --fix",
"lint:prettier": "prettier --write .",
"lint:stylelint": "stylelint **/*.{css,scss} --fix --ignore-path .gitignore",
"test:ts": "vue-tsc --build --noEmit",
"test:lint": "run-s test:eslint test:prettier test:stylelint",
"test:eslint": "eslint .",
"test:prettier": "prettier --check .",
"test:stylelint": "stylelint **/*.{css,scss} --ignore-path .gitignore",
"update": "ncu -u"
},
"peerDependencies": {
"@oruga-ui/oruga-next": "^0.13.0"
},
"dependencies": {
"bootstrap": "^5.3.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@oruga-ui/examples": "^0.13.6",
"@oruga-ui/oruga-next": "^0.13.6",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.13.3",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/tsconfig": "^0.9.1",
"core-js": "^3.49.0",
"eslint": "^10.6.0",
"eslint-plugin-compat": "^7.0.2",
"eslint-plugin-jsdoc": "^63.0.12",
"eslint-plugin-vue": "^10.9.2",
"jiti": "^2.7.0",
"npm-check-updates": "^22.2.9",
"npm-run-all2": "^9.0.2",
"prettier": "^3.9.4",
"sass": "^1.101.0",
"stylelint": "^17.14.0",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "^5.0.3",
"vite-plugin-static-copy": "^4.1.1",
"vue": "^3.5.36",
"vue-router": "^5.1.0",
"vue-tsc": "^3.3.7"
},
"browserslist": [
"defaults",
"not op_mini all"
]
}