-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
27 lines (27 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "svelte-app",
"version": "1.0.0",
"scripts": {
"build": "rollup -c ./rollup.newtab.config.js && rollup -c ./rollup.popup.config.js && rollup -c ./rollup.options.config.js",
"dev-newtab": "tput setaf 3; echo 'Goto chrome://extensions -> load Unpacked -> ./Public -> hit refresh to reload extension after any changes \n'; tput sgr 0; rollup -c ./rollup.newtab.config.js -w",
"dev-popup": "tput setaf 3; echo 'Goto chrome://extensions -> load Unpacked -> ./Public -> hit refresh to reload extension after any changes \n'; tput sgr 0; rollup -c ./rollup.popup.config.js -w",
"dev-options": "tput setaf 3; echo 'Goto chrome://extensions -> load Unpacked -> ./Public -> hit refresh to reload extension after any changes \n'; tput sgr 0; rollup -c ./rollup.options.config.js -w",
"dev-all": "tput setaf 3; echo 'This might be slow and changes take 4-5 seconds to propagate \nGoto chrome://extensions -> load Unpacked -> ./Public -> hit refresh to reload extension after any changes \n'; tput sgr 0; watch 'npm run build'"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"rollup": "^1.32.1",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^5.3.1",
"svelte": "^3.52.0"
},
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"sirv-cli": "^0.4.6",
"sveltejs-fontawesome": "^0.1.3"
}
}