-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
73 lines (73 loc) · 2 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
70
71
72
73
{
"name": "@oruga-ui/theme-bulma",
"version": "0.4.3",
"description": "Bulma theme for Oruga",
"license": "MIT",
"type": "module",
"main": "dist/bulma.js",
"module": "dist/bulma.mjs",
"unpkg": "dist/bulma.min.js",
"types": "dist/types/bulma.d.ts",
"sideEffects": [
"*.css",
"*.scss"
],
"files": [
"dist",
"src/assets"
],
"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",
"build:lib": "rimraf dist && rollup -c",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"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",
"@rollup/plugin-typescript": "11.1.6",
"@vitejs/plugin-vue": "5.1.3",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "10.4.20",
"core-js": "3.38.1",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"npm-check-updates": "^17.1.1",
"postcss": "8.4.45",
"prettier": "^3.3.3",
"rimraf": "6.0.1",
"rollup": "^4.21.2",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-sass": "1.13.2",
"sass": "1.78.0",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.5.1",
"typescript": "5.5.4",
"vite": "^5.4.3",
"vue": "3.4.34",
"vue-router": "4.4.3",
"vue-tsc": "2.1.6"
}
}