mirror of
https://github.com/JosunLP/BrowserExtensionTemplate.git
synced 2025-10-14 16:10:10 +00:00
basic structure
This commit is contained in:
parent
455c62a936
commit
977831157f
22 changed files with 1363 additions and 1 deletions
26
package.json
Normal file
26
package.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"name": "browser_extension_template",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"deploy": "tsc ./tools/deploy.ts --target esnext --module esnext && node ./tools/deploy.js && npm run build-js && npm run build-css",
|
||||
"build-js": "tsc -p tsconfig.json",
|
||||
"build-css": "sass ./src/sass/:./dist/css/",
|
||||
"sync": "tsc ./tools/syncConfig.ts --target esnext --module esnext && node ./tools/syncConfig.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bootstrap": "^5.1.6",
|
||||
"@types/node": "^18.7.4",
|
||||
"sass": "^1.39.0",
|
||||
"typescript": "^4.2.4"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead"
|
||||
],
|
||||
"dependencies": {
|
||||
"bootstrap": "^5.2.0",
|
||||
"friendly-helper": "^1.7.1"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue