-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.51 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
{
"name": "vue-emoji-box",
"description": "vue表情选择器",
"version": "1.0.11",
"private": false,
"author": {
"name": "zhanphty",
"email": "[email protected]",
"url": "https://www.uizph.com"
},
"homepage": "https://github.com/ZhanPhty",
"keywords": [
"javascript",
"vue",
"emoji"
],
"license": "MIT",
"repository": "https://github.com/ZhanPhty/vue-emoji-box",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rm -rf lib && rollup -c",
"lint": "vue-cli-service lint"
},
"main": "./lib/vue-emoji-box.cjs.js",
"module": "./lib/vue-emoji-box.esm.js",
"unpkg": "./lib/vue-emoji-box.unpkg.js",
"browser": {
"./sfc": "src/VueEmojiBox.vue"
},
"typings": "./lib/index.d.ts",
"files": [
"lib/*",
"src/*",
"README.md"
],
"dependencies": {
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.3",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"less": "^3.11.1",
"less-loader": "^6.0.0",
"prettier": "^1.19.1",
"rollup": "^2.6.1",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-less": "^1.1.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-vue": "^5.1.4",
"terser": "^4.6.11",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-emoji-box": "^1.0.11",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript/recommended",
"@vue/prettier",
"@vue/prettier/@typescript-eslint"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"prettier": {
"printWidth": 110,
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}