historical/xcloud-keyboard-mouse-inftrial.git/package.json
2024-01-16 11:20:27 -06:00

85 lines
3.2 KiB
JSON

{
"name": "xcloud-keyboard-mouse-crack",
"private": true,
"description": "Browser extension for controlling xCloud using a keyboard and mouse",
"author": "Sam Lord",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/idolize/xcloud-keyboard-mouse.git"
},
"scripts": {
"build": "npm run build:chrome",
"build:chrome": "webpack --env browser=chrome --config webpack/webpack.prod.js",
"build:edge": "webpack --env browser=edge --config webpack/webpack.prod.js",
"build:firefox": "webpack --env browser=firefox --config webpack/webpack.prod.js",
"build:safari": "webpack --env browser=safari --config webpack/webpack.prod.js",
"build:dev": "npm run build:dev:chrome",
"build:dev:chrome": "webpack --env browser=chrome --config webpack/webpack.dev.js",
"build:dev:edge": "webpack --env browser=edge --config webpack/webpack.dev.js",
"build:dev:firefox": "webpack --env browser=firefox --config webpack/webpack.dev.js",
"build:dev:safari": "webpack --env browser=safari --config webpack/webpack.dev.js",
"watch": "npm run watch:chrome",
"watch:chrome": "webpack --env browser=chrome --config webpack/webpack.dev.js --watch",
"watch:edge": "webpack --env browser=edge --config webpack/webpack.dev.js --watch",
"watch:firefox": "webpack --env browser=firefox --config webpack/webpack.dev.js --watch",
"watch:safari": "webpack --env browser=safari --config webpack/webpack.dev.js --watch",
"zip": "cd dist && zip -r extension.zip . -x \".*\" -x \"__MACOSX\"",
"clean": "rimraf dist",
"test": "npx jest",
"lint": "eslint --ext .js,.ts,.tsx --quiet --fix .",
"lint:ci": "eslint --ext .js,.ts,.tsx --quiet .",
"prepare": "husky install"
},
"dependencies": {
"@fluentui/react": "^8.106.3",
"@reduxjs/toolkit": "^1.9.3",
"ajv-formats": "^2.1.1",
"classnames": "^2.3.2",
"deep-equal": "^2.2.0",
"extpay": "^3.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"react-responsive-modal": "^6.4.1",
"redux-logger": "^3.0.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/chrome": "0.0.219",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^28.1.8",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.19",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.1.0",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lint-staged": "^13.1.4",
"prettier": "^2.8.4",
"rimraf": "^4.3.1",
"schema-utils": "^4.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}