-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.21 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.21 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": "@imarc/pronto",
"version": "2.0.4",
"description": "A light, customizable frontend starter kit for the component library",
"author": "Imarc",
"license": "Apache-2.0",
"bin": "./bin.js",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/imarc/component-library.git"
},
"type": "module",
"bugs": {
"url": "https://github.com/imarc/component-library/issues"
},
"homepage": "https://github.com/imarc/component-library#readme",
"scripts": {
"dev": "vite",
"prod": "vite build",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@imarc/vitrine": "^1.2.1",
"modern-normalize": "^3.0.1",
"swiper": "^11.2.6",
"vue": "^3.4.31"
},
"devDependencies": {
"@vitejs/plugin-vue": "*",
"sass": "^1.83.4",
"vite": "^6.0.7 || ^7.0.0"
},
"browserslist": [
"defaults"
],
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"vue/setup-compiler-macros": true
},
"extends": [
"plugin:vue/vue3-recommended",
"standard"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"comma-dangle": [
"warn",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"indent": [
"warn",
4
],
"vue/html-indent": [
"warn",
4
]
}
},
"peerDependencies": {
"@vitejs/plugin-vue": "^5.2.3 || ^6.0.0",
"@vueform/multiselect": "^2.6.11",
"sass-embedded": "^1.87.0"
}
}