- switch yarn to yarn 3
- add support for pnpm
- update dependecies
This commit is contained in:
yazninja 2023-05-09 21:27:16 +03:00
parent 01bfc35f01
commit 8695bd55a7
5 changed files with 10873 additions and 13 deletions

3
.npmrc Normal file
View file

@ -0,0 +1,3 @@
node-linker=hoisted
public-hoist-pattern=*
shamefully-hoist=true

873
.yarn/releases/yarn-3.5.1.cjs vendored Normal file

File diff suppressed because one or more lines are too long

2
.yarnrc.yml Normal file
View file

@ -0,0 +1,2 @@
yarnPath: .yarn/releases/yarn-3.5.1.cjs
nodeLinker: "node-modules"

View file

@ -2,7 +2,7 @@
"name": "cider", "name": "cider",
"applicationId": "Cider", "applicationId": "Cider",
"productName": "Cider", "productName": "Cider",
"version": "1.6.0", "version": "1.6.1",
"description": "A new cross-platform Apple Music experience based on Electron and Vue.js written from scratch with performance in mind.", "description": "A new cross-platform Apple Music experience based on Electron and Vue.js written from scratch with performance in mind.",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"main": "./build/index.js", "main": "./build/index.js",
@ -30,7 +30,7 @@
"@achingbrain/ssdp": "^4.0.1", "@achingbrain/ssdp": "^4.0.1",
"@sentry/electron": "^4.2.0", "@sentry/electron": "^4.2.0",
"@sentry/integrations": "^7.31.1", "@sentry/integrations": "^7.31.1",
"adm-zip": "^0.4.16", "adm-zip": "^0.5.10",
"airtunes2": "github:ciderapp/node_airtunes2", "airtunes2": "github:ciderapp/node_airtunes2",
"castv2-client": "^1.2.0", "castv2-client": "^1.2.0",
"chokidar": "^3.5.3", "chokidar": "^3.5.3",
@ -45,7 +45,7 @@
"electron-window-state": "^5.0.3", "electron-window-state": "^5.0.3",
"express": "^4.18.2", "express": "^4.18.2",
"get-port": "5.1.1", "get-port": "5.1.1",
"jimp": "^0.16.2", "jimp": "^0.22.7",
"lastfmapi": "^0.1.1", "lastfmapi": "^0.1.1",
"mdns-js": "github:ciderapp/node-mdns-js", "mdns-js": "github:ciderapp/node-mdns-js",
"mpris-service": "^2.1.2", "mpris-service": "^2.1.2",
@ -59,19 +59,19 @@
"simple-ssdp": "^1.0.2", "simple-ssdp": "^1.0.2",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"ssdp-js": "^1.0.1", "ssdp-js": "^1.0.1",
"ts-md5": "1.2.11", "ts-md5": "1.3.1",
"upnp-mediarenderer-client": "github:vapormusic/node-upnp-mediarenderer-client", "upnp-mediarenderer-client": "github:vapormusic/node-upnp-mediarenderer-client",
"v8-compile-cache": "^2.3.0", "v8-compile-cache": "^2.3.0",
"wallpaper": "5.0.1", "wallpaper": "5.0.1",
"ws": "^8.12.0", "ws": "^8.12.0",
"xml2js": "^0.4.23", "xml2js": "^0.5.0",
"youtube-search-without-api-key": "^1.1.0" "youtube-search-without-api-key": "^1.1.0"
}, },
"devDependencies": { "devDependencies": {
"@types/adm-zip": "^0.5.0", "@types/adm-zip": "^0.5.0",
"@types/discord-rpc": "4.0.3", "@types/discord-rpc": "4.0.4",
"@types/express": "^4.17.15", "@types/express": "^4.17.15",
"@types/node": "^18.11.18", "@types/node": "^20.1.1",
"@types/qrcode-terminal": "^0.12.0", "@types/qrcode-terminal": "^0.12.0",
"@types/ws": "^8.5.4", "@types/ws": "^8.5.4",
"electron": "github:castlabs/electron-releases", "electron": "github:castlabs/electron-releases",
@ -80,10 +80,10 @@
"electron-webpack": "^2.8.2", "electron-webpack": "^2.8.2",
"less": "^4.1.3", "less": "^4.1.3",
"musickit-typescript": "^1.2.4", "musickit-typescript": "^1.2.4",
"prettier": "2.7.1", "prettier": "2.8.8",
"typescript": "^4.9.4", "typescript": "^5.0.4",
"vue-devtools": "^5.1.4", "vue-devtools": "^5.1.4",
"webpack": "~5.74.0" "webpack": "~5.82.0"
}, },
"fileAssociations": [ "fileAssociations": [
{ {
@ -108,9 +108,9 @@
} }
], ],
"build": { "build": {
"electronVersion": "22.2.0", "electronVersion": "25.0.0-beta.2",
"electronDownload": { "electronDownload": {
"version": "22.2.0+wvcus", "version": "25.0.0-beta.2+wvcus",
"mirror": "https://github.com/castlabs/electron-releases/releases/download/v" "mirror": "https://github.com/castlabs/electron-releases/releases/download/v"
}, },
"appId": "cider", "appId": "cider",
@ -224,5 +224,6 @@
"node": "^19 || ^18 || ^16 || ^14.19", "node": "^19 || ^18 || ^16 || ^14.19",
"npm": ">= 6.13.4", "npm": ">= 6.13.4",
"yarn": ">= 1.21.1" "yarn": ">= 1.21.1"
} },
"packageManager": "yarn@3.5.1"
} }

9981
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load diff