package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/BetterYTM.user.ts",
  9. "type": "module",
  10. "scripts": {
  11. "test": "npm run node-ts -- ./test.ts",
  12. "build": "tsc && webpack",
  13. "post-build": "npm run node-ts -- ./src/tools/post-build.ts",
  14. "serve": "npm run node-ts -- ./src/tools/serve.ts",
  15. "watch": "concurrently \"nodemon --exec npm run build\" \"npm run serve\"",
  16. "lint": "tsc --noEmit && eslint .",
  17. "node-ts": "node --no-warnings=ExperimentalWarning --enable-source-maps --loader ts-node/esm"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/Sv443/BetterYTM.git"
  22. },
  23. "author": {
  24. "name": "Sv443",
  25. "url": "https://github.com/Sv443"
  26. },
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/Sv443/BetterYTM/issues"
  30. },
  31. "dependencies": {
  32. "@billjs/event-emitter": "^1.0.3"
  33. },
  34. "devDependencies": {
  35. "@types/express": "^4.17.17",
  36. "@types/greasemonkey": "^4.0.4",
  37. "@types/node": "^20.2.4",
  38. "@typescript-eslint/eslint-plugin": "^5.59.8",
  39. "@typescript-eslint/parser": "^5.59.7",
  40. "concurrently": "^8.1.0",
  41. "css-loader": "^6.8.1",
  42. "css-minimizer-webpack-plugin": "^5.0.0",
  43. "eslint": "^7.32.0",
  44. "express": "^4.18.2",
  45. "html-loader": "^4.2.0",
  46. "markdown-loader": "^8.0.0",
  47. "mini-css-extract-plugin": "^2.7.6",
  48. "nodemon": "^2.0.22",
  49. "ts-loader": "^9.4.3",
  50. "ts-node": "^10.9.1",
  51. "tslib": "^2.5.2",
  52. "typescript": "^5.0.4",
  53. "webpack-cli": "^5.1.1"
  54. },
  55. "browserslist": [
  56. "last 1 version",
  57. "> 1%",
  58. "not dead"
  59. ],
  60. "nodemonConfig": {
  61. "watch": [
  62. "src/**",
  63. "tools/**",
  64. "webpack.config.js"
  65. ],
  66. "ext": "ts,js,json,html,css",
  67. "ignore": [
  68. "dist/*",
  69. "dev/*"
  70. ]
  71. }
  72. }