{ "name": "browser_extension_template", "version": "0.0.1", "private": true, "scripts": { "deploy-v3": "npx rimraf ./dist/ && npm run build-tooling && node ./tools/deploy.js && npm run sync && npm run build-js && npm run build-css && node ./tools/clean.js", "deploy-v2": " npm run deploy-v3 && node ./tools/v2.js", "build-js": "webpack --config ./webpack.config.ts && webpack --config ./webpack.config.settings.ts && webpack --config ./webpack.config.background.ts", "build-css": "sass ./src/sass/:./dist/css/", "build-tooling": "tsc --project ./tooling.tsconfig.json", "watch-ts": "tsc -w -p tsconfig.json", "watch-sass": "sass --watch ./src/sass/:./dist/css/", "sync": "npm run build-tooling && node ./tools/syncConfig.js" }, "devDependencies": { "@types/chrome": "^0.0.206", "@types/node": "^18.11.18", "@webcomponents/webcomponentsjs": "^2.7.0", "sass": "^1.39.0", "ts-loader": "^9.4.2", "ts-node": "^10.9.1", "typescript": "^4.2.4", "webpack": "^5.75.0", "webpack-cli": "^5.0.1" }, "browserslist": [ "> 1%", "last 2 versions", "not dead" ], "authors": [ { "name": "Jonas Pfalzgraf", "email": "info@josunlp.de" } ], "description": "A basic template based on SASS and TypeScript to create browser extensions without directly relying on a larger framework.", "homepage": "https://github.com/JosunLP/BrowserExtensionTemplate", "license": "MIT", "repository": { "type": "git", "url": "git+ssh://git@github.com:JosunLP/BrowserExtensionTemplate.git" }, "bugs": { "url": "https://github.com/JosunLP/BrowserExtensionTemplate/issues" }, "dependencies": { "@webcomponents/custom-elements": "^1.5.1", "bootstrap": "^5.2.3" } }