-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
105 lines (105 loc) · 3.7 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
102
103
104
105
{
"private": true,
"name": "talk-desktop",
"productName": "Nextcloud Talk",
"version": "1.0.1",
"description": "Official Desktop client for Nextcloud Talk",
"bugs": {
"url": "https://github.com/nextcloud/talk-desktop/issues",
"create": "https://github.com/nextcloud/talk-desktop/issues/new/choose"
},
"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 --arch=universal",
"build:mac:x64": "electron-forge package --platform=darwin --arch=x64",
"build:mac:arm64": "electron-forge package --platform=darwin --arch=arm64",
"build:windows": "electron-forge package --platform=win32",
"package": "electron-forge make --skip-package",
"package:linux": "electron-forge make --skip-package --platform=linux",
"package:mac": "electron-forge make --skip-package --platform=darwin --arch=universal",
"package:mac:x64": "electron-forge make --skip-package --platform=darwin --arch=x64",
"package:mac:arm64": "electron-forge make --skip-package --platform=darwin --arch=arm64",
"package:windows": "electron-forge make --skip-package --platform=win32",
"release:package": "npx -y 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"
},
"talk": {
"stable": "v20.1.1"
},
"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.10.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/moment": "^1.3.2",
"@nextcloud/notify_push": "^1.3.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.22.0",
"@vueuse/core": "^11.3.0",
"core-js": "^3.40.0",
"electron-squirrel-startup": "^1.0.1",
"howler": "^2.2.4",
"pinia": "^2.3.0",
"semver": "^7.6.3",
"unzip-crx-3": "^0.2.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.0",
"@electron-forge/maker-dmg": "^7.6.0",
"@electron-forge/maker-flatpak": "^7.6.0",
"@electron-forge/maker-squirrel": "^7.6.0",
"@electron-forge/maker-zip": "^7.6.0",
"@electron-forge/plugin-webpack": "^7.6.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.7",
"electron": "^33.3.1",
"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.32.0",
"icon-gen": "^5.0.0",
"node-loader": "^2.1.0",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.7.3",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0",
"webpack": "^5.97.1",
"webpack-merge": "^6.0.1",
"worker-loader": "^3.0.8",
"zx": "^8.3.0"
},
"engines": {
"node": "^20.14.0",
"npm": "^10.0.0"
}
}