12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "@sv443-network/userutils",
- "version": "0.1.0",
- "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/index.d.ts",
- "scripts": {
- "lint": "tsc && eslint .",
- "prepare-build": "tsup lib/index.ts --format cjs,esm --dts --clean --treeshake",
- "build": "npm run prepare-build -- --minify",
- "build-dev": "npm run prepare-build -- --sourcemap --watch"
- },
- "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"
- },
- "browserslist": [
- "last 1 version",
- "> 1%",
- "not dead"
- ]
- }
|