-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "@oruga-ui/theme-bulma",
"version": "0.4.3",
"description": "Bulma theme for Oruga",
"license": "MIT",
"type": "module",
"main": "dist/bulma.cjs",
"module": "dist/bulma.js",
"unpkg": "dist/bulma.cjs",
"types": "dist/types/bulma.d.ts",
"sideEffects": [
"*.css",
"*.scss"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oruga-ui/theme-bulma.git"
},
"bugs": {
"url": "https://github.com/oruga-ui/theme-bulma/issues"
},
"scripts": {
"dev": "vite --force",
"serve": "vite preview",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint . --fix --quiet",
"lint:style": "stylelint **/*.{css,scss} --fix --ignore-path .gitignore",
"update": "ncu -u"
},
"peerDependencies": {
"@oruga-ui/oruga-next": "0.9.0-pre.2"
},
"dependencies": {
"bulma": "1.0.2"
},
"devDependencies": {
"@oruga-ui/examples": "0.9.0-pre.2",
"@oruga-ui/oruga-next": "0.9.0-pre.2",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "5.1.4",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.1.3",
"@vue/tsconfig": "^0.5.1",
"core-js": "3.39.0",
"eslint": "^9.14.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.30.0",
"npm-check-updates": "^17.1.10",
"prettier": "^3.3.3",
"sass": "1.80.6",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.8.1",
"terser": "^5.36.0",
"typescript": "5.6.3",
"vite": "^5.4.10",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-static-copy": "^2.0.0",
"vue": "3.5.12",
"vue-router": "4.4.5",
"vue-tsc": "2.1.10"
}
}