1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "@sv443-network/userutils",
- "version": "0.5.3",
- "description": "Library with various utilities for userscripts - register listeners for when CSS selectors exist, intercept events, modify the DOM more easily and more ",
- "main": "dist/index.js",
- "module": "dist/index.mjs",
- "types": "dist/lib/index.d.ts",
- "scripts": {
- "lint": "tsc --noEmit && eslint .",
- "build-types": "tsc --emitDeclarationOnly --declaration --outDir dist",
- "build-common": "tsup lib/index.ts --format cjs,esm --clean --treeshake",
- "build-iife": "tsup lib/index.ts --format cjs,esm,iife --clean --treeshake --minify",
- "build": "npm run build-common -- --minify && npm run build-types",
- "dev": "npm run build-common -- --sourcemap --watch --onSuccess \"npm run build-types\"",
- "publish-package": "npm run build && changeset publish"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Sv443-Network/UserUtils.git"
- },
- "keywords": [
- "userscript",
- "utilities"
- ],
- "author": {
- "name": "Sv443",
- "url": "https://github.com/Sv443"
- },
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/Sv443-Network/UserUtils/issues"
- },
- "homepage": "https://github.com/Sv443-Network/UserUtils#readme",
- "devDependencies": {
- "@changesets/cli": "^2.26.2",
- "@types/greasemonkey": "^4.0.4",
- "@typescript-eslint/eslint-plugin": "^6.2.1",
- "@typescript-eslint/parser": "^6.2.1",
- "eslint": "^8.46.0",
- "tslib": "^2.6.1",
- "tsup": "^7.2.0",
- "typescript": "^5.1.6"
- },
- "files": [
- "/dist/index.js",
- "/dist/index.mjs",
- "/dist/lib/**.*",
- "/package.json",
- "/README.md",
- "/CHANGELOG.md",
- "/LICENSE.txt"
- ]
- }
|