-
-
Notifications
You must be signed in to change notification settings - Fork 469
/
package.json
76 lines (76 loc) · 2.17 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
{
"name": "vue-advanced-chat",
"version": "2.0.9",
"license": "MIT",
"description": "A beautiful chat rooms component made with Vue.js - compatible with Vue, React & Angular",
"author": {
"email": "[email protected]",
"name": "Antoine Dupont"
},
"types": "./types/vue-advanced-chat.common.d.ts",
"keywords": [
"vue",
"vuejs",
"chat",
"vue-js-chat",
"multiple",
"group",
"rooms",
"realtime"
],
"repository": {
"type": "git",
"url": "git+https://github.com/advanced-chat/vue-advanced-chat.git"
},
"bugs": {
"url": "https://github.com/advanced-chat/vue-advanced-chat/issues"
},
"homepage": "https://github.com/advanced-chat/vue-advanced-chat#readme",
"main": "./dist/vue-advanced-chat.umd.js",
"module": "./dist/vue-advanced-chat.es.js",
"unpkg": "./dist/vue-advanced-chat.umd.js",
"jsdelivr": "./dist/vue-advanced-chat.umd.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"clean:lib": "rm -rf dist/*.js && rm -rf dist/*.map && rm -rf dist/*.css && rm -rf dist/*.html",
"prepublish": "npm run lint && npm run build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"reset": "rm -rf node_modules && rm -rf package-lock.json && npm i",
"reset-all": "cd demo && npm run reset-all",
"pull-master": "git pull origin master --no-edit --no-ff"
},
"typings": "types/index.d.ts",
"files": [
"dist/*",
"types/*"
],
"devDependencies": {
"@babel/core": "7.12.16",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"@vitejs/plugin-vue": "1.10.2",
"@vue/compiler-sfc": "3.2.22",
"@vue/eslint-config-standard": "4.0.0",
"@vue/eslint-config-typescript": "9.1.0",
"babel-eslint": "10.0.3",
"eslint": "7.32.0",
"eslint-plugin-vue": "8.0.3",
"node-sass": "8.0.0",
"sass": "1.56.1",
"semantic-release": "^22.0.5",
"typescript": "4.6.x",
"vite": "2.9.16",
"vue": "3.2.37",
"vue-loader": "^16.8.3"
},
"dependencies": {
"emoji-picker-element": "1.12.1",
"micromark": "^3.1.0",
"micromark-extension-gfm": "^2.0.1"
}
}