Files
kutt-extension/package.json
abhijithvijayan 02e83642e4 v4.4.0
2026-01-04 02:53:58 +05:30

78 lines
2.6 KiB
JSON

{
"name": "kutt-extension",
"version": "4.4.0",
"description": "Kutt.it extension for browsers.",
"license": "MIT",
"repository": "https://github.com/thedevs-network/kutt-extension.git",
"author": {
"name": "abhijithvijayan",
"email": "email@abhijithvijayan.in",
"url": "https://abhijithvijayan.in"
},
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"dev:chrome": "cross-env TARGET_BROWSER=chrome vite build --config vite.config.ts --mode development --watch",
"dev:firefox": "cross-env TARGET_BROWSER=firefox vite build --config vite.config.ts --mode development --watch",
"dev:opera": "cross-env TARGET_BROWSER=opera vite build --config vite.config.ts --mode development --watch",
"build:chrome": "cross-env TARGET_BROWSER=chrome vite build --config vite.config.ts",
"build:firefox": "cross-env TARGET_BROWSER=firefox vite build --config vite.config.ts",
"build:opera": "cross-env TARGET_BROWSER=opera vite build --config vite.config.ts",
"build": "npm run build:chrome && npm run build:firefox && npm run build:opera",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"url",
"shortener",
"browser",
"extension",
"addon",
"kutt"
],
"private": true,
"dependencies": {
"@abhijithvijayan/ts-utils": "^1.2.2",
"advanced-css-reset": "^2.1.3",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^19.0.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "^3.0.0",
"@abhijithvijayan/tsconfig": "^1.5.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^19.0.2",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-wext-manifest": "^1.2.2",
"vite-plugin-zip-pack": "^1.2.4"
}
}