UNPKG

create-chrome-plugin

Version:

Chrome Extension Boilerplate with React 18, TypeScript and Webpack 5

45 lines (44 loc) 1.2 kB
{ "name": "create-chrome-plugin", "description": "Chrome Extension Boilerplate with React 18, TypeScript and Webpack 5", "version": "1.0.0", "bin": "./bin/cli/js", "scripts": { "start": "webpack --watch --progress --config webpack.dev.js", "build": "webpack --config webpack.prod.js" }, "repository": { "type": "git", "url": "git+https://github.com/harshalslimaye/create-chrome-plugin.git" }, "keywords": [ "chrome", "chrome-extension", "react", "typescript", "chrome-extension-boilerplate", "manifest-v3" ], "author": "Harshal Limaye <harshal.limaye@outlook.com>", "license": "MIT", "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@types/chrome": "^0.0.197", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/typescript": "^2.0.0", "clean-webpack-plugin": "^4.0.0", "copy-webpack-plugin": "^11.0.0", "css-loader": "^6.7.1", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", "ts-loader": "^9.4.1", "typescript": "^4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-merge": "^5.8.0" } }