-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "vk-desktop-dev",
"version": "1.0.0-dev.0",
"description": "Мессенджер ВКонтакте",
"main": "app/index.js",
"scripts": {
"dev": "vite",
"build": "yarn run dist && yarn run pack",
"tsc": "tsc --noEmit",
"test": "vitest run",
"test-watch": "vitest watch",
"lint:eslint": "eslint -c .eslintrc.full.js src main-process scripts *.{js,mts} --ext .js,.ts,.tsx,.mjs,.mts",
"lint:stylelint": "stylelint src/**/*.css --quiet-deprecation-warnings",
"lint": "yarn lint:eslint && yarn lint:stylelint",
"dist": "yarn run tsc && vite build",
"pack": "electron-builder --config build/config.json",
"win-setup": "yarn win-setup64 && yarn win-setup32",
"win-setup64": "innosetup-compiler build/config-x64.iss --verbose",
"win-setup32": "innosetup-compiler build/config-ia32.iss --verbose",
"postinstall": "husky && node ./scripts/moveVkuiTokens.mjs && patch-package"
},
"repository": "https://github.com/danyadev/vk-desktop",
"author": "danyadev <danyadev@mail.ru>",
"license": "Apache-2.0",
"engines": {
"node": ">=20.9.0"
},
"lint-staged": {
"*.{js,ts,tsx,mjs,mts}": [
"eslint -c .eslintrc.full.js",
"vitest related --run"
],
"*.css": "stylelint"
},
"dependencies": {
"@electron/remote": "2.1.2",
"@vkontakte/vk-qr": "2.1.1",
"pinia": "2.3.1",
"vue": "3.5.13",
"vue-router": "4.5.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "3.0.1",
"@stylistic/eslint-plugin-js": "3.0.1",
"@stylistic/stylelint-config": "2.0.0",
"@stylistic/stylelint-plugin": "3.1.1",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"@vitejs/plugin-vue-jsx": "4.1.1",
"@vkontakte/vkui-tokens": "4.59.0",
"@vue/compiler-sfc": "3.5.13",
"electron": "22.3.27",
"electron-builder": "26.0.1",
"eslint": "9.19.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"innosetup-compiler": "6.3.1",
"lightningcss": "1.29.1",
"lint-staged": "15.4.3",
"patch-package": "8.0.0",
"stylelint": "16.14.1",
"stylelint-config-standard": "37.0.0",
"typescript": "5.7.3",
"user-agent-data-types": "0.4.2",
"vite": "6.0.11",
"vite-plugin-electron": "0.29.0",
"vite-plugin-electron-renderer": "0.14.6",
"vitest": "3.0.4"
}
}