-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
110 lines (110 loc) · 2.64 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vue-easy-dnd",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build-dev": "cd ./lib && rollup --config rollup.config.mjs",
"build": "cd ./lib && rollup --config rollup.config.mjs --environment BUILD:production",
"publish": "cd ./lib && npm publish",
"lint": "vue-cli-service lint ./src ./lib",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@segi/template": "file:lib",
"core-js": "^3.26.1",
"mitt": "^3.0.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@rollup/plugin-node-resolve": "^15.0.1",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-css": "^0.6.0",
"eslint-plugin-vue": "^8.0.3",
"rollup": "^3.7.4",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"vitepress": "^1.0.0-alpha.72"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"plugin:css/recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"vue/multi-word-component-names": "off",
"vue/no-unused-vars": "off",
"no-prototype-builtins": "off",
"vue/no-mutating-props": "off",
"vue/max-attributes-per-line": [
"error",
{
"singleline": 2,
"multiline": 1
}
],
"vue/html-self-closing": [
"error",
{
"html": {
"void": "always",
"normal": "always",
"component": "always"
},
"svg": "always",
"math": "always"
}
],
"vue/no-v-html": "off",
"no-multiple-empty-lines": "error",
"semi": "error",
"space-before-function-paren": "error",
"prefer-const": "error",
"object-curly-spacing": [
"error",
"always"
],
"quotes": [
"error",
"single"
],
"indent": [
"error",
2
],
"brace-style": [
"error",
"stroustrup",
{
"allowSingleLine": true
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}