1
0

package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@sv443-network/userutils",
  3. "version": "0.4.1",
  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. "build-common": "tsup lib/index.ts --format cjs,esm --dts --clean --treeshake",
  11. "build": "npm run build-common -- --minify",
  12. "dev": "npm run build-common -- --sourcemap --watch",
  13. "publish-package": "npm run build && changeset publish"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/Sv443-Network/UserUtils.git"
  18. },
  19. "keywords": [
  20. "userscript",
  21. "utilities"
  22. ],
  23. "author": {
  24. "name": "Sv443",
  25. "url": "https://github.com/Sv443"
  26. },
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/Sv443-Network/UserUtils/issues"
  30. },
  31. "homepage": "https://github.com/Sv443-Network/UserUtils#readme",
  32. "devDependencies": {
  33. "@changesets/cli": "^2.26.2",
  34. "@types/greasemonkey": "^4.0.4",
  35. "@typescript-eslint/eslint-plugin": "^6.2.1",
  36. "@typescript-eslint/parser": "^6.2.1",
  37. "eslint": "^8.46.0",
  38. "tslib": "^2.6.1",
  39. "tsup": "^7.2.0",
  40. "typescript": "^5.1.6"
  41. },
  42. "browserslist": [
  43. "last 1 version",
  44. "> 1%",
  45. "not dead"
  46. ]
  47. }