CrunchyDL/package.json

68 lines
2.2 KiB
JSON
Raw Normal View History

2024-04-16 20:20:30 +02:00
{
"name": "crunchyroll-downloader",
"author": "Stratum",
"description": "Crunchyroll Downloader",
2024-05-01 00:41:47 +02:00
"version": "1.0.7",
2024-04-16 20:20:30 +02:00
"private": true,
"main": ".output/src/electron/background.js",
2024-04-30 04:08:42 +02:00
"repository": "https://github.com/stratuma/Crunchyroll-Downloader-v4.0",
2024-04-16 20:20:30 +02:00
"scripts": {
"dev": "nuxt dev -o",
"build": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && electron-builder install-app-deps",
"transpile-src": "tsc -p ./src --outDir .output/src",
"dev:electron": "NODE_ENV=development concurrently --kill-others \"nuxt dev\" \"tsc-watch -p ./src --outDir .output/src --onSuccess 'electron ./.output/src/electron/background.js'\"",
"dev:electron:win": "set NODE_ENV=development& concurrently --kill-others \"nuxt dev\" \"tsc-watch -p ./src --outDir .output/src --onSuccess run.electron\"",
"build:electron": "pnpm build && pnpm transpile-src && node build.js"
},
"devDependencies": {
2024-04-29 15:54:59 +02:00
"7zip-bin": "^5.2.0",
2024-04-16 20:20:30 +02:00
"@nuxtjs/eslint-config-typescript": "^12.1.0",
2024-04-26 15:40:08 +02:00
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.12.0",
2024-04-29 15:54:59 +02:00
"@pinia/nuxt": "^0.4.11",
2024-04-16 20:20:30 +02:00
"@types/express": "^4.17.21",
"concurrently": "^8.2.2",
2024-04-30 18:14:44 +02:00
"dotenv": "^16.4.5",
2024-04-26 15:40:08 +02:00
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
2024-04-16 20:20:30 +02:00
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"nuxt": "^3.11.2",
"nuxt-icon": "^0.6.10",
"prettier": "^2.8.8",
"sass": "^1.75.0",
2024-04-16 20:20:30 +02:00
"sass-loader": "^13.3.3",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.5",
2024-04-16 20:20:30 +02:00
"wait-on": "^7.2.0"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
2024-04-21 23:39:52 +02:00
"@types/crypto-js": "^4.2.2",
2024-04-16 20:20:30 +02:00
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node-cron": "^3.0.11",
"ass-compiler": "^0.1.11",
2024-04-21 23:39:52 +02:00
"crypto-js": "^4.2.0",
2024-04-16 20:20:30 +02:00
"electron-log": "^5.1.2",
"electron-settings": "^4.0.4",
2024-04-29 15:54:59 +02:00
"electron-updater": "^6.1.8",
2024-04-16 20:20:30 +02:00
"express": "^4.19.2",
"fastify": "^4.26.2",
"fluent-ffmpeg": "^2.1.2",
2024-04-21 23:39:52 +02:00
"jsencrypt": "^3.3.2",
2024-04-16 20:20:30 +02:00
"mpd-parser": "^1.3.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"sequelize": "^6.37.3",
2024-04-29 15:54:59 +02:00
"sqlite3": "5.1.6"
2024-04-20 19:16:29 +02:00
},
"build": {
2024-04-29 15:54:59 +02:00
"extraResources": [
"./ffmpeg/**"
2024-04-20 19:16:29 +02:00
]
2024-04-16 20:20:30 +02:00
}
}