-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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
{
"name": "vue3-beautiful-chat",
"version": "3.4.2",
"description": "A simple and beautiful Vue 3 chat component backend agnostic.",
"main": "index.js",
"repository": "https://github.com/Sitronik/vue3-beautiful-chat.git",
"author": "Sitronik <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve ./demo/src/main.js",
"build:prod": "vite build",
"lint": "vue-cli-service lint",
"build:dev": "npm run build -- --mode development --watch",
"prepublishOnly": "npm run build:prod",
"format": "prettier --write \"src/**/*.{js,vue}\""
},
"files": [
"dist/*",
"index.js",
"esm.js"
],
"dependencies": {
"autolinker": "^4.1.0",
"emoji-js": "^3.8.1",
"escape-goat": "^4.0.0",
"imagemin": "^9.0.0",
"kind-of": "6.0.3",
"minimist": "1.2.8",
"msgdown": "^1.0.2",
"tiny-emitter": "^2.1.0",
"v-tooltip": "^4.0.0-alpha.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.5.13",
"@vue/eslint-config-prettier": "^10.1.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^9.32.0",
"lint-staged": "^15.3.0",
"node-forge": "^1.3.1",
"node-sass": "^9.0.0",
"prettier": "^3.4.2",
"sass": "^1.83.1",
"sass-loader": "^16.0.4",
"vite": "^6.0.7",
"vue": "^3.5.13"
},
"keywords": [
"vue",
"vuejs",
"chat",
"vue-js-chat"
],
"bugs": {
"url": "https://github.com/Sitronik/vue3-beautiful-chat/issues"
},
"lint-staged": {
"*.{js,vue}": "vue-cli-service lint"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}