package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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": "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. "dotenv": "^16.1.4",
  44. "eslint": "^7.32.0",
  45. "express": "^4.18.2",
  46. "html-loader": "^4.2.0",
  47. "markdown-loader": "^8.0.0",
  48. "mini-css-extract-plugin": "^2.7.6",
  49. "nodemon": "^2.0.22",
  50. "ts-loader": "^9.4.3",
  51. "ts-node": "^10.9.1",
  52. "tslib": "^2.5.2",
  53. "typescript": "^5.0.4",
  54. "webpack-cli": "^5.1.1"
  55. },
  56. "browserslist": [
  57. "last 1 version",
  58. "> 1%",
  59. "not dead"
  60. ],
  61. "nodemonConfig": {
  62. "watch": [
  63. "src/**",
  64. "tools/**",
  65. "webpack.config.js",
  66. ".env"
  67. ],
  68. "ext": "ts,js,json,html,css",
  69. "ignore": [
  70. "dist/*",
  71. "dev/*"
  72. ]
  73. }
  74. }