package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@sv443-network/userutils",
  3. "version": "0.1.0",
  4. "description": "Library with various utilities for userscripts - register listeners for when CSS selectors exist, intercept events, modify the DOM more easily and more ",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "scripts": {
  9. "lint": "tsc && eslint .",
  10. "prepare-build": "tsup lib/index.ts --format cjs,esm --dts --clean --treeshake",
  11. "build": "npm run prepare-build -- --minify",
  12. "build-dev": "npm run prepare-build -- --sourcemap --watch"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/Sv443-Network/UserUtils.git"
  17. },
  18. "keywords": [
  19. "userscript",
  20. "utilities"
  21. ],
  22. "author": {
  23. "name": "Sv443",
  24. "url": "https://github.com/Sv443"
  25. },
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/Sv443-Network/UserUtils/issues"
  29. },
  30. "homepage": "https://github.com/Sv443-Network/UserUtils#readme",
  31. "devDependencies": {
  32. "@changesets/cli": "^2.26.2",
  33. "@types/greasemonkey": "^4.0.4",
  34. "@typescript-eslint/eslint-plugin": "^6.2.1",
  35. "@typescript-eslint/parser": "^6.2.1",
  36. "eslint": "^8.46.0",
  37. "tslib": "^2.6.1",
  38. "tsup": "^7.2.0",
  39. "typescript": "^5.1.6"
  40. },
  41. "browserslist": [
  42. "last 1 version",
  43. "> 1%",
  44. "not dead"
  45. ]
  46. }