mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-06-21 18:11:08 +00:00

* Feature/webpack integration (#9) * working webpack into template * removing package-lock.json * implementing source * style update
51 lines
No EOL
1.7 KiB
JSON
51 lines
No EOL
1.7 KiB
JSON
{
|
|
"name": "browser_extension_template",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"deploy-v3": "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.cjs && webpack --config ./webpack.config.settings.cjs && webpack --config ./webpack.config.background.cjs",
|
|
"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",
|
|
"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"
|
|
}
|
|
} |