CrunchyDL/package.json

79 lines
2.8 KiB
JSON
Raw Permalink Normal View History

2024-04-16 20:20:30 +02:00
{
2024-06-23 19:51:50 +02:00
"name": "crunchydl",
"author": "OpenSTDL",
2024-05-02 03:15:04 +02:00
"description": "Crunchyroll Downloader",
2024-07-10 14:20:30 +02:00
"version": "1.2.5",
2024-05-01 01:45:45 +02:00
"private": true,
"main": ".output/src/electron/background.js",
2024-06-23 19:51:50 +02:00
"repository": "https://github.com/OpenSTDL/CrunchyDL",
2024-05-01 01:45:45 +02:00
"scripts": {
"dev": "nuxt dev -o",
"build": "nuxt build",
2024-05-01 01:45:45 +02:00
"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 prettier:fix && modclean --run && nuxt generate && pnpm transpile-src && node build.js",
"prettier:fix": "pnpm prettier src --write && pnpm prettier components --write && pnpm prettier pages --write && pnpm prettier build.js --write"
2024-05-01 01:45:45 +02:00
},
"devDependencies": {
"7zip-bin": "^5.2.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.12.0",
"@pinia/nuxt": "^0.4.11",
"@types/crypto-js": "^4.2.2",
2024-05-01 01:45:45 +02:00
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node-cron": "^3.0.11",
2024-05-01 01:45:45 +02:00
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
2024-07-10 14:20:30 +02:00
"electron": "^30.2.0",
2024-05-09 02:09:37 +02:00
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
2024-05-01 01:45:45 +02:00
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
2024-05-09 02:09:37 +02:00
"modclean": "3.0.0-beta.1",
2024-06-21 13:49:15 +02:00
"nuxt": "3.11.2",
2024-05-01 01:45:45 +02:00
"nuxt-icon": "^0.6.10",
"prettier": "^2.8.8",
2024-07-10 14:20:30 +02:00
"sass": "^1.77.7",
2024-05-01 01:45:45 +02:00
"sass-loader": "^13.3.3",
"tsc-watch": "^6.2.0",
2024-07-10 14:20:30 +02:00
"typescript": "^5.5.3",
"wait-on": "^7.2.0"
2024-05-01 01:45:45 +02:00
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"ass-compiler": "^0.1.11",
"crypto-js": "^4.2.0",
2024-06-21 13:26:55 +02:00
"electron-context-menu": "^3.6.1",
2024-05-27 20:20:45 +02:00
"electron-log": "^5.1.5",
2024-05-01 01:45:45 +02:00
"electron-settings": "^4.0.4",
2024-06-21 13:49:15 +02:00
"electron-updater": "^6.2.1",
2024-05-01 01:45:45 +02:00
"express": "^4.19.2",
2024-07-10 14:20:30 +02:00
"fastify": "^4.28.1",
"fluent-ffmpeg": "^2.1.3",
"long": "^5.2.3",
2024-05-01 01:45:45 +02:00
"mpd-parser": "^1.3.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"protobufjs": "^7.3.2",
2024-05-01 01:45:45 +02:00
"sequelize": "^6.37.3",
"sqlite3": "5.1.6",
"winston": "^3.13.0"
2024-05-01 01:45:45 +02:00
},
"build": {
2024-05-09 02:09:37 +02:00
"files": [
2024-07-10 14:20:30 +02:00
".output/**/*",
"node_modules/**/*",
"package.json"
2024-05-09 02:09:37 +02:00
],
2024-05-01 01:45:45 +02:00
"extraResources": [
2024-05-01 22:01:21 +02:00
"./ffmpeg/**",
"./shaka/**"
2024-05-01 01:45:45 +02:00
]
}
2024-04-16 20:20:30 +02:00
}