UNPKG

wext-manifest-transformer

Version:

Transformer that lets you specify `manifest.json` properties to appear only in specific browsers.

77 lines 1.7 kB
{ "name": "wext-manifest-transformer", "version": "1.3.2", "description": "Transformer that lets you specify `manifest.json` properties to appear only in specific browsers.", "license": "MIT", "repository": "https://github.com/abhijithvijayan/wext-manifest-transformer.git", "funding": "https://github.com/sponsors/abhijithvijayan", "author": { "name": "abhijithvijayan", "email": "email@abhijithvijayan.in", "url": "https://abhijithvijayan.in" }, "engines": { "node": ">=20" }, "type": "module", "exports": { "types": "./lib/index.d.ts", "default": "./lib/index.js" }, "files": [ "lib" ], "scripts": { "dev": "tsc --outDir lib --watch", "build": "rimraf lib && tsc --outDir lib", "pack:list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz", "test": "jest", "test:watch": "jest --watch", "lint": "eslint .", "lint:fix": "eslint . --fix" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "eslint" ] }, "keywords": [ "webextension", "manifest", "wext", "transformer", "chrome", "firefox", "edge", "brave", "opera", "vivaldi", "arc", "yandex" ], "devDependencies": { "@abhijithvijayan/tsconfig": "^1.5.1", "@eslint/js": "^9.0.0", "@swc/core": "^1.15.8", "@swc/jest": "^0.2.39", "@types/jest": "^29.5.14", "@types/node": "^20.19.27", "cross-env": "^7.0.3", "eslint": "^9.0.0", "eslint-config-prettier": "^10.0.0", "eslint-plugin-prettier": "^5.5.4", "globals": "^16.5.0", "husky": "^4.3.8", "jest": "^29.7.0", "lint-staged": "^11.2.6", "prettier": "^3.7.4", "rimraf": "^3.0.2", "typescript": "5.8.3", "typescript-eslint": "^8.0.0" } }