-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.53 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.53 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
{
"name": "ytmdesktop-plus",
"productName": "YTMDesktopPlus",
"version": "2.0.11",
"description": "Desktop app for YouTube Music with companion server, Discord presence, and Last.fm scrobbling",
"main": ".vite/main/index.js",
"private": true,
"homepage": "https://github.com/RealWhyKnot/YTMDesktopPlus",
"repository": {
"type": "git",
"url": "https://github.com/RealWhyKnot/YTMDesktopPlus.git"
},
"bugs": {
"url": "https://github.com/RealWhyKnot/YTMDesktopPlus/issues"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish:dry": "electron-forge publish --dry-run",
"publish:fromdry": "electron-forge publish --from-dry-run",
"publish": "electron-forge publish",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit && tsc -p tsconfig.tests.json && tsc -p tsconfig.tools.json && tsc -p examples/addon-template/tsconfig.json && tsc -p examples/addon-template/tsconfig.page.json",
"test": "vitest run",
"sdk:dts": "node tools/generate-addon-dts.mjs",
"prettier": "prettier --check \"src/**/*.{ts,tsx,vue}\" \"viteconfig/**/*.ts\" \"tests/**/*.ts\" \"tools/**/*.mjs\" \"examples/**/*.{js,json,md,css}\" \"*.{ts,mjs}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,vue}\" \"viteconfig/**/*.ts\" \"tests/**/*.ts\" \"tools/**/*.mjs\" \"examples/**/*.{js,json,md,css}\" \"*.{ts,mjs}\"",
"postinstall": "husky"
},
"keywords": [],
"author": {
"name": "WhyKnot"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@electron-forge/cli": "7.11.2",
"@electron-forge/maker-deb": "7.11.2",
"@electron-forge/maker-flatpak": "7.11.2",
"@electron-forge/maker-rpm": "7.11.2",
"@electron-forge/maker-squirrel": "7.11.2",
"@electron-forge/maker-zip": "7.11.2",
"@electron-forge/plugin-auto-unpack-natives": "7.11.2",
"@electron-forge/plugin-fuses": "7.11.2",
"@electron-forge/plugin-vite": "7.11.2",
"@electron-forge/publisher-github": "7.11.2",
"@electron/fuses": "2.1.3",
"@eslint/js": "^10.0.1",
"@reforged/maker-appimage": "5.3.1",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/node": "22.20.2",
"@types/ws": "^8",
"@vitejs/plugin-vue": "5.2.4",
"electron": "44.3.0",
"eslint": "10.10.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-vue": "10.11.0",
"globals": "17.12.0",
"husky": "^9.1.7",
"lint-staged": "17.5.1",
"prettier": "3.9.6",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "8.70.0",
"vite": "^5.4.21",
"vitest": "3.2.7",
"vue-eslint-parser": "^10.0.0"
},
"dependencies": {
"@fastify/cors": "11.3.0",
"@fastify/error": "^4.2.0",
"@fastify/rate-limit": "11.2.0",
"@fastify/type-provider-typebox": "^5.2.0",
"@ghostery/adblocker-electron": "^2.18.2",
"@ghostery/adblocker-electron-preload": "^2.18.2",
"@sinclair/typebox": "0.34.52",
"conf": "^15.1.0",
"electron-log": "5.4.4",
"electron-squirrel-startup": "^1.0.1",
"fastify": "5.12.3",
"fastify-socket.io": "^5.1.0",
"fflate": "^0.8.3",
"material-symbols": "0.47.2",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"vue": "3.5.42",
"ws": "8.21.3"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"prettier --write",
"eslint --cache --fix"
],
"*.mjs": [
"prettier --write",
"eslint --cache --fix"
]
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "yarn@4.18.0"
}