-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.48 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
{
"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"
],
"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": "vue-tsc --noEmit && 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: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/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@oruga-ui/examples": "^0.13.1",
"@oruga-ui/oruga-next": "^0.13.1",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^25.3.3",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.9.0",
"conventional-changelog-conventionalcommits": "^9.2.0",
"core-js": "^3.48.0",
"eslint": "^10.0.2",
"eslint-plugin-vue": "^10.8.0",
"npm-check-updates": "^19.6.3",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-recommended-scss": "^17.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-static-copy": "^3.2.0",
"vite-tsconfig-paths": "^6.1.1",
"vue": "^3.5.29",
"vue-router": "^5.0.3",
"vue-tsc": "^3.2.5"
}
}