package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "betterytm",
  3. "userscriptName": "BetterYTM",
  4. "version": "1.0.0",
  5. "description": "Configurable layout and UX improvements for YouTube Music",
  6. "description:de": "Konfigurierbares Layout und UX-Verbesserungen für YouTube Music",
  7. "homepage": "https://github.com/Sv443/BetterYTM",
  8. "main": "./src/index.ts",
  9. "type": "module",
  10. "scripts": {
  11. "test": "npm run node-ts -- ./test.ts",
  12. "build-prod": "webpack --env mode=production",
  13. "build-dev": "webpack --env mode=development",
  14. "post-build": "npm run node-ts -- ./src/tools/post-build.ts",
  15. "serve": "npm run node-ts -- ./src/tools/serve.ts",
  16. "dev": "concurrently \"nodemon --exec npm run build-dev\" \"npm run serve\"",
  17. "lint": "tsc --noEmit && eslint .",
  18. "node-ts": "node --no-warnings=ExperimentalWarning --enable-source-maps --loader ts-node/esm"
  19. },
  20. "engines": {
  21. "node": ">=18",
  22. "npm": ">=8"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/Sv443/BetterYTM.git"
  27. },
  28. "author": {
  29. "name": "Sv443",
  30. "url": "https://github.com/Sv443"
  31. },
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/Sv443/BetterYTM/issues"
  35. },
  36. "dependencies": {
  37. "@sv443-network/userutils": "^1.1.2",
  38. "nanoevents": "^8.0.0"
  39. },
  40. "devDependencies": {
  41. "@types/express": "^4.17.17",
  42. "@types/greasemonkey": "^4.0.4",
  43. "@types/node": "^20.2.4",
  44. "@typescript-eslint/eslint-plugin": "^5.59.8",
  45. "@typescript-eslint/parser": "^5.59.7",
  46. "concurrently": "^8.1.0",
  47. "css-loader": "^6.8.1",
  48. "css-minimizer-webpack-plugin": "^5.0.0",
  49. "dotenv": "^16.1.4",
  50. "eslint": "^7.32.0",
  51. "express": "^4.18.2",
  52. "html-loader": "^4.2.0",
  53. "markdown-loader": "^8.0.0",
  54. "mini-css-extract-plugin": "^2.7.6",
  55. "nodemon": "^3.0.1",
  56. "ts-loader": "^9.4.3",
  57. "ts-node": "^10.9.1",
  58. "tslib": "^2.5.2",
  59. "typescript": "^5.0.4",
  60. "webpack-cli": "^5.1.1"
  61. },
  62. "browserslist": [
  63. "last 1 version",
  64. "> 1%",
  65. "not dead"
  66. ],
  67. "nodemonConfig": {
  68. "watch": [
  69. "src/**",
  70. "assets/**",
  71. "webpack.config.js",
  72. ".env"
  73. ],
  74. "ext": "ts,js,json,html,css",
  75. "ignore": [
  76. "dist/*",
  77. "dev/*"
  78. ]
  79. }
  80. }