-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.31 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.31 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
87
88
89
90
91
92
93
94
95
{
"name": "amadeus",
"version": "1.0.0-beta.21",
"description": "Free, functional and open source VK Messenger",
"main": "./dist/main/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node .electron-nuxt/index.js",
"build": "node prebuild.js && cross-env NODE_ENV=production node .electron-nuxt/index.js",
"build:linux": "docker run --privileged --rm -v .\\:/usr/amadeus -w /usr/amadeus amadeus-linux yarn build",
"build:all": "yarn build && yarn build:linux",
"release": "yarn build --publish always",
"postinstall": "node prebuild.js && electron-builder install-app-deps",
"docker": "docker build -t amadeus-linux .",
"deps": "yarn && yarn postinstall",
"lint": "eslint --ext .ts,.vue --ignore-path .eslintignore src/renderer"
},
"keywords": [
"VK",
"vk.com",
"messenger",
"vk messenger"
],
"author": {
"name": "Maxim",
"email": "purplehorrorrus@gmail.com",
"url": "https://purplehorrorrus.github.io"
},
"license": "CC-BY-NC-SA-4.0",
"repository": {
"url": "https://github.com/PurpleHorrorRus/Amadeus"
},
"engines": {
"node": ">=16.18.1"
},
"resolutions": {
"parse-path": "^5.0.0",
"got": "^11.8.5",
"nth-check": "^2.0.1",
"glob-parent": "^6.0.1",
"parse-url": "^8.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@nuxt/image": "^0.7.1",
"@nuxt/types": "2.16.0",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/bluebird": "^3.5.38",
"@types/lodash": "^4.14.191",
"@vue/runtime-dom": "^3.2.47",
"@xpda-dev/core": "^0.1.6",
"@xpda-dev/electron-builder": "^0.2.1",
"@xpda-dev/electron-launcher": "^0.3.0",
"@xpda-dev/webpack-step": "^0.1.6",
"cross-env": "^7.0.3",
"deepmerge": "^4.3.0",
"electron": "^23.0.0",
"electron-builder": "^23.6.0",
"eslint": "^8.33.0",
"eslint-plugin-vue": "^9.9.0",
"nuxt": "2.16.0",
"sass-loader": "10.2.1",
"ts-loader": "8.2.0",
"typescript": "^4.9.5",
"vue-svg-loader": "^0.16.0",
"webpack": "4.46.0",
"webpack-node-externals": "2.5.2"
},
"dependencies": {
"@lottiefiles/vue-lottie-player": "^1.1.0",
"@nuxtjs/color-mode": "2.1.1",
"@nuxtjs/style-resources": "^1.2.1",
"@types/dom-mediacapture-record": "^1.0.14",
"@uscreen-video/v-color": "^1.0.0",
"@vk-io/authorization": "1.2.1",
"bluebird": "^3.7.2",
"contrast-color": "^1.0.1",
"date-diff": "^1.0.2",
"electron-updater": "^5.3.0",
"formdata-node": "4.3.3",
"sass": "^1.58.0",
"v-emoji-picker": "^2.3.3",
"v-tooltip": "2.1.3",
"vk-io": "4.3.2",
"vue-clickaway": "^2.2.2",
"vue-cropperjs": "4.2.0",
"vue-js-toggle-button": "^1.3.3",
"vue-loading-skeleton": "^1.1.9",
"vue-range-component": "https://github.com/xwpongithub/vue-range-slider",
"vue-scroll-outside": "^1.0.1",
"vue-yandex-maps": "^0.11.13",
"vuedraggable": "^2.24.3"
}
}