-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "solstice-vue",
"type": "module",
"version": "1.1.1",
"private": true,
"main": "./dist/solstice-vue.umd.cjs",
"module": "./dist/solstice-vue.js",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"exports": {
".": {
"import": "./dist/solstice-vue.js",
"require": "./dist/solstice-vue.umd.cjs"
},
"./dist/style.css": "./dist/style.css",
"./dist/solstice.scss": "./dist/solstice.scss",
"./dist/solstice.css": "./dist/solstice.css",
"./dist/solstice.css.map": "./dist/solstice.css.map"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-pattern '/dist/' --ignore-path .gitignore",
"stylelint": "stylelint '**/*.{vue,scss}'"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@vueuse/core": "^10.11.1",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"bootstrap-vue-next": "^0.25.2",
"solstice-theme": "github:uw-it-aca/solstice-theme#1.0.1",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vue3-mq": "^3.2.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^1.6.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.29.0",
"jsdom": "^23.2.0",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"sass": "^1.79.5",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"unplugin-vue-router": "^0.7.0",
"vite": "^5.4.8",
"vitest": "^1.6.0"
}
}