-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.76 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.76 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
96
97
98
99
100
101
102
103
104
105
{
"private": true,
"name": "talk-desktop",
"productName": "Nextcloud Talk",
"desktopName": "com.nextcloud.talk.desktop",
"version": "2.0.1-beta",
"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": "me@shgk.me"
},
"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",
"package:windows:exe": "electron-forge make --skip-package --platform=win32 --targets=squirrel",
"package:windows:msi": "electron-forge make --skip-package --platform=win32 --targets=wix",
"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 src/ --fix",
"typecheck": "vue-tsc --noEmit"
},
"talk": {
"stable": "v22.0.0",
"beta": "v22.0.0",
"dev": "main"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/browser-storage": "^0.4.0",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/event-bus": "^3.3.2",
"@nextcloud/files": "^3.12.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.0",
"@nextcloud/notify_push": "^1.3.0",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^9.0.0",
"@vueuse/core": "^13.7.0",
"core-js": "^3.45.1",
"electron-squirrel-startup": "^1.0.1",
"howler": "^2.2.4",
"pinia": "^3.0.3",
"semver": "^7.7.2",
"unzip-crx-3": "^0.2.0",
"vue": "^3.5.22",
"vue-material-design-icons": "^5.3.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.9.0",
"@electron-forge/maker-dmg": "^7.9.0",
"@electron-forge/maker-flatpak": "^7.9.0",
"@electron-forge/maker-squirrel": "^7.9.0",
"@electron-forge/maker-wix": "^7.9.0",
"@electron-forge/maker-zip": "^7.9.0",
"@electron-forge/plugin-webpack": "^7.9.0",
"@nextcloud/eslint-config": "^9.0.0-rc.5",
"@nextcloud/webpack-vue-config": "^6.3.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/howler": "^2.2.12",
"@vercel/webpack-asset-relocator-loader": "^1.10.0",
"@vue/tsconfig": "^0.8.1",
"dotenv": "^17.2.2",
"electron": "^38.1.2",
"esbuild-loader": "^4.3.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"icon-gen": "^5.0.0",
"mini-css-extract-plugin": "^2.9.4",
"node-loader": "^2.1.0",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.9.2",
"vue-tsc": "^3.0.8",
"webpack": "^5.101.3",
"webpack-merge": "^6.0.1",
"worker-loader": "^3.0.8",
"zx": "^8.8.3"
},
"engines": {
"node": "^22.0.0",
"npm": "^10.5.0"
}
}