package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "betterytm",
  3. "version": "1.0.0",
  4. "description": "Userscript that improves YouTube Music",
  5. "main": "./src/BetterYTM.user.ts",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "build": "webpack",
  9. "serve": "http-server -s -c 5 -p 8710 .",
  10. "watch": "nodemon --exec \"npm run build && npm run serve\"",
  11. "lint": "eslint ."
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/Sv443/BetterYTM.git"
  16. },
  17. "author": {
  18. "name": "Sv443",
  19. "url": "https://github.com/Sv443",
  20. "email": "[email protected]"
  21. },
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/Sv443/BetterYTM/issues"
  25. },
  26. "homepage": "https://github.com/Sv443/BetterYTM#readme",
  27. "devDependencies": {
  28. "@types/greasemonkey": "^4.0.4",
  29. "@types/node": "^20.2.4",
  30. "@typescript-eslint/eslint-plugin": "^5.59.7",
  31. "@typescript-eslint/parser": "^5.59.7",
  32. "eslint": "^7.32.0",
  33. "http-server": "^14.1.1",
  34. "nodemon": "^2.0.22",
  35. "ts-loader": "^9.4.3",
  36. "ts-node": "^10.9.1",
  37. "tslib": "^2.5.2",
  38. "typescript": "^5.0.4",
  39. "webpack-cli": "^5.1.1"
  40. },
  41. "browserslist": [
  42. "last 1 version",
  43. "> 1%",
  44. "not dead"
  45. ],
  46. "nodemonConfig": {
  47. "watch": [
  48. "src/*",
  49. "tools/*"
  50. ],
  51. "ext": "ts,js,json",
  52. "ignore": [
  53. "BetterYTM.user.js",
  54. "dev/*"
  55. ]
  56. }
  57. }