-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
96 lines (96 loc) · 3.27 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
{
"private": true,
"name": "talk-desktop",
"productName": "Nextcloud Talk",
"version": "0.39.0",
"description": "Official Desktop client for Nextcloud Talk",
"bugs": "https://github.com/nextcloud/talk-desktop/issues",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Grigorii K. Shartsev",
"email": "[email protected]"
},
"main": "./.webpack/main",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/talk-desktop"
},
"scripts": {
"start": "npm run dev",
"dev": "electron-forge start",
"build": "electron-forge package",
"build:linux": "electron-forge package --platform=linux",
"build:mac": "electron-forge package --platform=darwin",
"build:windows": "electron-forge package --platform=win32",
"build:all": "electron-forge package --platform=all",
"package": "electron-forge make --skip-package",
"package:linux": "electron-forge make --skip-package --platform=linux",
"package:mac": "electron-forge make --skip-package --platform=darwin",
"package:windows": "electron-forge make --skip-package --platform=win32",
"package:all": "npm run make:linux && npm run make:mac && npm run make:windows",
"release:package": "zx ./scripts/prepare-release-packages.mjs",
"generate-icons": "node ./scripts/generate-icons.js",
"download-vue-devtools": "node ./scripts/download-vue-devtools.mjs",
"lint": "eslint --ext .js,.vue src/ --fix",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/browser-storage": "^0.4.0",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/files": "^3.9.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/moment": "^1.3.1",
"@nextcloud/notify_push": "^1.3.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.19.0",
"@vueuse/core": "^11.2.0",
"core-js": "^3.39.0",
"electron-squirrel-startup": "^1.0.1",
"howler": "^2.2.4",
"pinia": "^2.2.5",
"semver": "^7.6.3",
"undici": "6.6.2",
"unzip-crx-3": "^0.2.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-webpack": "^7.5.0",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/webpack-vue-config": "^6.2.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.4",
"@vue/tsconfig": "^0.5.1",
"dotenv": "^16.4.5",
"electron": "^33.0.2",
"esbuild-loader": "^4.2.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-vue": "^9.30.0",
"icon-gen": "^5.0.0",
"node-loader": "^2.0.0",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.6.3",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10",
"webpack": "^5.96.1",
"webpack-merge": "^6.0.1",
"worker-loader": "^3.0.8",
"zx": "^8.2.0"
},
"engines": {
"node": "^20.14.0",
"npm": "^10.0.0"
}
}