package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "html-loader": "^4.2.0",
  34. "http-server": "^14.1.1",
  35. "nodemon": "^2.0.22",
  36. "ts-loader": "^9.4.3",
  37. "ts-node": "^10.9.1",
  38. "tslib": "^2.5.2",
  39. "typescript": "^5.0.4",
  40. "webpack-cli": "^5.1.1"
  41. },
  42. "browserslist": [
  43. "last 1 version",
  44. "> 1%",
  45. "not dead"
  46. ],
  47. "nodemonConfig": {
  48. "watch": [
  49. "src/*",
  50. "tools/*"
  51. ],
  52. "ext": "ts,js,json",
  53. "ignore": [
  54. "BetterYTM.user.js",
  55. "dev/*"
  56. ]
  57. }
  58. }